Answers for "jquery select based on data attribute"

1

jquery get option data attribute

$(this).find(':selected').data('id');
Posted by: Guest on December-09-2020
9

jquery select by data attribute

$('div[data-key=value]');
Posted by: Guest on April-06-2020
2

jquery get data attribute of selected option

$(this).find(':selected').data('id')
Posted by: Guest on July-22-2020
2

jquery find by data attribute

$('.slide-link[data-slide="0"]').addClass('active');
Posted by: Guest on October-21-2020
1

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"
Posted by: Guest on January-05-2021

Code answers related to "jquery select based on data attribute"

Code answers related to "Javascript"

Browse Popular Code Answers by Language