[jQuery] Testing to see if a checkbox is checked
All,
Hello all. I'm having an issue with an application that was working
previously. I have some checkboxes which I use to hide/show other
items on the page. I was using the following code to achieve this...
if (jPrnt.attr("checked")) {
actionLabelElmt.show("normal");
actionElmt.show("normal");
} else {
actionLabelElmt.hide("normal");
actionElmt.hide("normal");
actionElmt.attr("value", '-1');
}
This is no longer working... Any ideas on how to see if a checkbox is
checked or unchecked after a page has been rendered but not submitted?
Dan