I have a chat program done in ASP and Javascript that runs within a Windows Browser Control that is inside another application. When the page automatically refreshes it makes the cursor flash in the appliation. I can turn this off in the Browser Window using the onload and onunload events, but the change is not global as the refresh cursor will flash withing the application, but not when it is in the browser control.
Using this function...
<script language=Javascript>
function resetcursor() {
document.all.style.cursor=
'default';
}
</script>
Thanks.
Start Free Trial