Hi everyone, i'm using the latest mootools and trying to add onclick-event on window:
window.addEvent('click', function() {
if(menu.bPersonal===true)
menu.closePersonal();
});
All tested browser behave as expected except IE8.
For IE8 it is possible to add onclick on body element merely:
$$('body')[0].addEvent('click', function() {
if(menu.bPersonal===true)
menu.closePersonal();
});
How to add onlick-event on window?
Thanks in advance!
