Can JS submit name/vale pairs through a document.testform.submit(); ? or does it have to be submitted through the html tags, for example
With jquery it is very simple:
$("#formid").bind("submit", function(){ var str = $("#formid").serialize(); $.post("url?"+str); return false; }