Answers for "how to see the value of custom attribute in html element jquery"

1

jquery get custom attribute

var userType = $("input[name=ctrl_CustomerType]:checked").attr('xmlvalue');
Posted by: Guest on March-28-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 "how to see the value of custom attribute in html element jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language