display hour glass on the screen

wxdqz

New Member
Hi,
I am able to display an hour glass while calling the jsp page using this script..
<script>
document.body.style.cursor="wait";
</script>
<include jsppp..................>
<script>
document.body.style.cursor="auto";
</script>

.Onload of this page am calling one function for calculation. I applied same script here also but not getting hour glass while calculation.This function takes time abt 50 sec .Please help...
 
Back
Top