Send form to cgi with jQuery
问题 I want to send a form and control what happens after with jQuery. I cannot use php . My server have cgi to process the data. How to send the form to the cgi using jQuery?. I don't know how to do it but I tried things like this: $(function(){ var name = $("input:text").val("name"); ; $(":submit").click(function(e){ e.preventDefault(); load("http://cgi.myDomain.com/FormMail.pl", ( name )); }); }) The html: <Form id="formulari" method="POST" action="http://cgi.aDomain/FormMail.pl"> <p> <input