Click here to Skip to main content
15,912,400 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to clear Check box sign(mark) on asp.net web form using jquery

$("#cbExcludeGST").val("");

its not working..
Posted

Hi MAGuru,

$('#check1').prop('checked', false);


Try this.

Good Luck.
 
Share this answer
 
Comments
MAGuru 22-Apr-14 7:00am    
thanx
Ajith K Gatty 22-Apr-14 7:08am    
Welcome :)
Hello,
You can use following to check and uncheck checkboc using jQuery.

JavaScript
//For Checked
$("#cbExcludeGST").attr("checked", true);

//For Unchecked
$("#cbExcludeGST").attr("checked", false);


Thanks,
Imdadhusen
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900