Hi,
Jquery Useful Selectors are:
1. How to set checked attribute in CheckBox.
$("."+cssClass).attr('checked', True);
Jquery Useful Selectors are:
1. How to set checked attribute in CheckBox.
$("."+cssClass).attr('checked', True);
2. How to select element on the basis of disable attribute:
$("."+cssClass+":not[disabled]").attr('checked', true);
Note: Above selector solution will be increased ASAP.
No comments :
Post a Comment