I\'m building a form using HTML with JQuery mobile so that the form can be used on mobile devices.
I have the form exporting to CSV via email. However the write to t
Have a quick look at this answer for checking if a checkbox is checked.
How to check whether a checkbox is checked in jQuery?
But basically you want to do something like below to check its value:
if ($("#element").is(":checked")) { alert("I'm checked"); }