How to know if a checkbox has been selected when submitting a form using jquery
If you have a checkbox on your form that has to be selected before you want the user to continue you can use jquery to check if it has been selected by doing something like the following: $(document).ready(function () { $('#SubmitForm').click(function () { if ($('#Terms').attr(...