> function dosubmit() { > $("myform").submit(); > }
Your selector is wrong (forgot the #): function dosubmit() { $("#myform").submit(); }
> function dosubmit() { > $("myform").submit(); > }
Your selector is wrong (forgot the #): function dosubmit() { $("#myform").submit(); }