I have a form with a reset button and what I want is to reset only some form elements when that button is clicked.
<form name="frmMyForm">
<input type="text" name="txtText" />
<input type="checkbox" name="chkCheckBox" />
<input type="reset" value="reset" />
</form>
Now I want the checkbox to be reset when I click the reset button is clicked and let the textbox retain its value
Is it possible?