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

How to calculate SNR of signals in MATLAB? -

java - How to create Table using Apache PDFBox -

mpi - Why is MPI_Bsend not returning error even when the buffer is insufficient to accommodate all the messages -