Skip to main content
added 12 characters in body
Source Link
Amit Joki
  • 59.4k
  • 7
  • 80
  • 96

We can checked a particulate checkbox as,

$(id of the checkbox)[0].checked = true

$('id of the checkbox')[0].checked = true 

and uncheck by ,

$(id of the checkbox)[0].checked = false

$('id of the checkbox')[0].checked = false 

We can checked a particulate checkbox as,

$(id of the checkbox)[0].checked = true

and uncheck by ,

$(id of the checkbox)[0].checked = false

We can checked a particulate checkbox as,

$('id of the checkbox')[0].checked = true 

and uncheck by ,

$('id of the checkbox')[0].checked = false 
Source Link
AKS
  • 279
  • 3
  • 2

We can checked a particulate checkbox as,

$(id of the checkbox)[0].checked = true

and uncheck by ,

$(id of the checkbox)[0].checked = false