I have an existing signup form that submits in the traditional (non-ajax) way. I want to splice in some Javascript so that I can use some of the data from this form to populate other fields in another database. If this insertion takes a significant amount of time (one minute) is the page going to be locked until the AJAX call returns?
<script language="javascript">
$(document).ready(function(){
$("#setupform").submit(function(){
doAJAXcallHERE();
});
});
</script>
Basically, do is my webpage going to grind to a halt if the PHP page called by the AJAX function takes over a minute to process?
Thanks!