I would like to know what selectors i have available for this data attributes that comes with HTML5.

Taking this piece of HTML as sample:

<ul data-group="Companies">
  <li data-company="Microsoft"></li>
  <li data-company="Google"></li>
  <li data-company ="Facebook"></li>
</ul>

Are there selectors to get:

  • All elements with data-company="Microsoft" below "Companies"
  • All elements with data-company!="Microsoft" below "Companies"
  • In other cases its possible to use another selectors like "contains, less than, bigger than, etc...".

Thanks in advance.

Best Regards.

Jose.

link|improve this question

1  
If you look here you will find all you need api.jquery.com/category/selectors :-) – Allan Kimmer Jensen Nov 10 '10 at 16:23
feedback

1 Answer

up vote 49 down vote accepted
$("ul[data-group='Companies'] li[data-company='Microsoft']") //Get all elements with data-company="Microsoft" below "Companies"

$("ul[data-group='Companies'] li:not([data-company='Microsoft'])") //get all elements with data-company!="Microsoft" below "Companies"

Look in to jQuery Selectors :contains is a selector

here is info on the :contains selector

link|improve this answer
2  
This saved me a lot of time, thank you! – Stefano D Oct 2 '11 at 12:32
feedback

Your Answer

 
or
required, but never shown

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