>     function dosubmit() {
>       $("myform").submit();
>     }

Your selector is wrong (forgot the #):

function dosubmit() {
     $("#myform").submit();
}

Reply via email to