-5

I need to uncheck / check the below checkbox using jquery.

Please tell how to change the below checked attribute to unchecked attribute using jquery.

<input name="op1" type="checkbox" checked  id="chkEmailNotification" />
Rajaprabhu Aravindasamy
  • 64,912
  • 15
  • 96
  • 124

1 Answers1

1

Use .prop()

$("#chkEmailNotification").prop('checked',true); //to Check
$("#chkEmailNotification").prop('checked',false); //to Uncheck
Rajaprabhu Aravindasamy
  • 64,912
  • 15
  • 96
  • 124