![]() |
Available news archives:
comp.lang.tcl
-
comp.lang.python
-
comp.security.firewalls
-
sci.crypt -
comp.lang.php -
comp.lang.javascript
|
|
comp.lang.javascript archiveRe: document-wide disable of mousedown
From: jshanman <jcshanks@sbcglobal.net>
Date: Tue Jan 31 2006 - 16:48:36 CET
PJ6 wrote:
Rather then trying to disable mouse actions, try disabling script
For example, set a Global variable when the request is sent to the
xmlhttp=new XMLHttpRequest()
Processing = true; //now we know that we are waiting for a response
then in the stateChange function (the current request was completed)...
function xmlhttpChange() {
now before execution of any other function code, wrap a
//do other page actions like normal
} else {
This would obviously need to be tailored to your script, but I hope the
|