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.