posted 13 years ago
Hi Bear,
See, i'm doing this using following code:
earlier:
<input type="button" onclick="doThis()">
Now,
<input type="button" onclick="if(!isIE)window.event=event;doThis()">
So that i will be having window.event in all scopes. This has reduced a little amount of work for me. Going forward if am able to do "if(!isIE)window.event=event" in some place before going to doThis(), will make my life simpler. Any suggestions about this?
Thanks
Warm Regards
Rakesh Maddala