I have button with mouseup, mousedown, mouseout, mouseover events. On these events I am using cursor as hand. Now the issue is with submitting the button. After clicking on button cursor should be waiting state on entire page.
document.body.s tyle.cursor = 'wait' makes the cursor as wait only on the body of the page. While navigating with button again I am seeing cursor as hand. Please suggest me in this.
[HTML]<input type="submit" class="startbut tonUp" name="submit" value="submit" onMouseOver="th is.className='s tartbuttonOver' " onMouseDown="th is.className='s tartbuttonDown' " onMouseUp="this .className='sta rtbuttonUp'" onMouseOut="thi s.className='st artbuttonUp' ">[/HTML]
document.body.s tyle.cursor = 'wait' makes the cursor as wait only on the body of the page. While navigating with button again I am seeing cursor as hand. Please suggest me in this.
[HTML]<input type="submit" class="startbut tonUp" name="submit" value="submit" onMouseOver="th is.className='s tartbuttonOver' " onMouseDown="th is.className='s tartbuttonDown' " onMouseUp="this .className='sta rtbuttonUp'" onMouseOut="thi s.className='st artbuttonUp' ">[/HTML]
Comment