Monday, December 9, 2013

Jquery : Useful Selectors

Hi,

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 :