i wont give you the code
hhahaha another hint..when setting mouse cursor. Traverse the entire document using javascript and set the cursor style to "wait" just like this one..
Code:
if (document.all)
{
for (var i=0;i < document.all.length; i++)
{
document.all(i).style.cursor = 'wait';
}
}
...you can put that to a function so that you can call it before you do a server request using AJAX. Then traverse all document again and reset the cursor style when the readyState member variable of your XMLHttpRequest returns the value 4 which means "the request is complete".
Thats all I can give..so start digging
dont know about AJAX? start here.. http://www.w3schools.com/ajax/ajax_example.asp 