Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

custom attribute jquery selector

$("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"
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #custom #attribute #jquery #selector
ADD COMMENT
Topic
Name
5+9 =