java - Submitting form to Struts Action using AJAX -


function callprocessfastafiles(){     var form=document.forms[0];     document.forms[0].action="/bioinformaticsonlinetool/fromprocessfasta.do";     document.forms[0].submit(); } 

i calling function send form server. how can change using ajax after server done, response comes on same page?


Popular posts from this blog

Php - Delimiter must not be alphanumeric or backslash -

c# - How to change the "Applies To" field under folder auditing options programatically (.NET) -

c++ - Ambiguity when using boost::assign::list_of to construct a std::vector -