views:

84

answers:

1

There is a checkbox created by html helper in MVC view:

<%= Html.CheckBox("Choice", false)%>

Then Want to get the checking status of this this checkbox in js using jquery, how to write the code?

+1  A: 
if($('#Choice').is(':checked')) {
  //is checked
} else {
  //is not checked
}

or you might even be able to do

if($('#Choice:checked')) {
  //is checked
} else {
  //is not checked
}
Colin