This seems to work fine in Firefox but, in IE8 specifically (it may work in other version of IE), I have an issue where the event variable is lost.
There is an event (mousedown) that calls a function that stores a parameter set. One of the parameters is the event itself. The function that is called stores the parameters in global variables so they can be accessed by the function called in the settimeout.
Once it is executed, the function called by the set timeout no longer has access to the properties in the event variable. It is still recognized as an event object, but all the properties are reset.
I have tried using function references, using anonymous functions both using the globals and also passing them as parameters but nothing seems to be working. Any one have any ideas?
I know this is a little complicated so I setup a simple example that shows my issue here: http://jsfiddle.net/fd8sk/
When you click 'Fire now' (which doesn't use a settimeout), you get that the button click is a number. When you click the 'Fire delay', the button is now 'Unknown'.
This is a pretty generic function that has a lot of parameters that aren't always used so I'm hoping to avoid major refactoring of this. In my real example, the parameter that is the event in my issue case won't be an event in other scenarios.