I want whenever user want's to save the form the checbox should be checked, Other wise message should be given that,
Please check the checkbox first.
<asp:CheckBox ID="chkDeclaration" runat="server" />
<div class="declaration">
I hereby declare that the above details mentioned by me are true, complete and correct
to the best of my knowledge & belief. In the event of any information being found
false or incorrect at any stage, I am liable for any action as deemed fit by the
company.</div>
JS
<script type="text/javascript">
var ErrArr = [];
$(document).ready(function () {
$('#btnSave').click(function (e) {
validateTitle();
e.preventDefault();
validateddl();
validateTextBoxes();
FunValidateP ...
Go to the complete details ...