Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
3  
$('[data-field="some value"]') – jackwanders Jul 16 '12 at 15:02
1  

marked as duplicate by Patrick McElhaney, Esailija, Alnitak, Michael Berkowski, Jason Sturges Jul 17 '12 at 1:39

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.

3 Answers

up vote 3 down vote accepted

use this:

$("[attributeName='value']")
share|improve this answer

Try this selector

$("[data-something='value']")
share|improve this answer

just to expand on above answers you can do following to identify an element using multiple attribute-value pairs.

$("[attribute1='value1'][attribute2='value2']")

for example if you need to select a particular "li" node in a jstree you do something like $("#my_tree").jstree("select_node",$("li[rel='city'][name='london']"));

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.