html - Clear button that clears checkboxes using CSS -
does know how create clear button clears checkboxes using css , html? reason being because clear function not work ie8, therefore css , html way go. thank
you can achieve with:
<button type="reset">reset</button>
see live example:
<form> <input type="checkbox" name="check" value="yes" /> option 1<br /> <button type="reset">reset</button> </form>
Comments
Post a Comment