I wish a page to fully load before issuing an ajax call to update database. I can call a javascript function in the body onload event so the page is fully loaded, but I\'m n
You can use jQuery to do that for you.
$(document).ready(function() { // put Ajax here. });
Check it here:
http://docs.jquery.com/Tutorials:Introducing_%24%28document%29.ready%28%29