Tuesday 27 December 2011

How to Check checkbox checked property using jQuery

Use below code structure: 
 
if($("#checkkBoxId").is(':checked'))
             $("#txtAge").show();
           else
 $("#txtAge").hide();

No comments:

Post a Comment