-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
  • 66,513
  • 17
  • 101
  • 130

1 Answers1

1

Use .prop()

$("#chkEmailNotification").prop('checked',true); //to Check
$("#chkEmailNotification").prop('checked',false); //to Uncheck
Rajaprabhu Aravindasamy
  • 66,513
  • 17
  • 101
  • 130