I cant Implement html 5 on asp:textboxes, everything I found on the internet was implemented on input: not on asp:textboxes
now I found a very useful validator for textboxes, however, I can't make it work with asp:textbox
here are the codes:
<script>
$(document).ready(function () {
$('form').h5Validate();
});
</script>
<input id="name" name="name" type="text" placeholder="Bob" title="Your name is required." required />
I want to make it work with asp:textbox