Is there a way using asp.net/jquery to toggle a div visibility when using a checkbox like this:
<%: Html.CheckBoxFor(m => m.Type) %>
I know how to do the jQuery part, but I'm not sure how to determine whether or not the box has been clicked or changed. Is there some sort of onChange or onClick I can add to this?
EDIT - Let me change this a bit...HOW can I assign an id to the Html.CheckBoxFor()??