[Answer]-Submit form from javascript with form url

0👍

Try this

    var r=confirm("Press a button");
        if (r==true)
          {

//Form is on another page so
window.location="your_url_withquerystring"
          }
        else
          {

          }

1👍

use jquery submit()

$('#yourFormID').submit();
👤bipen

Leave a comment