Thanks for the quick reply
actually i have implemented the two functions
function StartEvents()
{
if(document.captureEvents)
{
if(Event.KEYUP && document.onkeyup == null)
{
document.captureEvents(Eve
document.onkeyup=backhome;
}
}
}
function StopEvents()
{
if(document.releaseEvents)
{
if(Event.KEYUP)
{
document.releaseEvents(Eve
document.onkeyup = null;
document.onkeydown = null;
}
}
}
On a certain click i want the above events to be stopped (StopEvents() )and on another click i want them to be enabled (StartEvents() )
I hope i m clear now with my problem
Main Topics
Browse All Topics





by: ChetOS82Posted on 2007-08-23 at 06:19:40ID: 19754020
It would help a lot if we knew what you are trying to do.
It isn't working because IE doesn't support this type of key handling.