Anyone who know how I can trigger the standard HTML5 validation in a form without using a submit button? (JavaScript or jQuery).
I do not want to se
I think its simpler:
$('submit').click(function(e){ if (e.isValid()) e.preventDefault(); //your code. }
this will stop the submit until form is valid.