Possible Duplicate:
jQuery selector with specific attribute
I need to find an element with a specific data-field attribute value. Is it possible to do with jQuery?
I need to find an element with a specific data-field attribute value. Is it possible to do with jQuery? |
||||
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
just to expand on above answers you can do following to identify an element using multiple attribute-value pairs.
for example if you need to select a particular "li" node in a jstree you do something like |
|||
|
|
$('[data-field="some value"]')– jackwanders Jul 16 '12 at 15:02