get custom attribute jquery code example

Example 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"

Example 2: jquery get custom attribute

var userType = $("input[name=ctrl_CustomerType]:checked").attr('xmlvalue');

Example 3: jquery get custom attribute

var userType = $("input[name=ctrl_CustomerType]:checked").attr('xmlvalue');
        alert("xmlvalue is: " + userType);