i know this is not a google chrome forum but i am a coolite user anyway and this is also for the same project where i amusing coolite... just a question regarding window.addEventListener() ,,, this works for firefox and chrome while window.attachEvents is for IE... the problem is only window.addEventListener works on chrome... if i use a window object


var win = window.open();
win.addEventListener()....
this will not work for chrome but this works for firefox,,, win.attachEvents.. also works for IE... it means that on chrome you may only be able to add an event listener to the current window and not on another window which you opened from the current window (which is what i need to do)... can anybody please help on how to add an event listener to another window for google chrome