I have this line not working in Firefox (works perfectly fine in IE and Chrome)
ste.frame.document.onkeydown=function(e) {
alert('a');
};
here ste.frame is a window object [object Window]. I tried
window.frames[0].document.onkeydown=function(e){
alert('b');
}
Also working in IE and Chrome and not working in Firefox. I guess if the second one works, the first one will work either.
Does anyone know how to resolve this? Thanks in advance.
I spended almost an hour to find a solution, but I couldn't. I think the reason is, that the Mozilla foundation has implented just the basics of IFrame object, so you can't assign an eventhandler. Compare to eventhandler you can modify css styles (see this example).
I used the DOM-Inspector to figure out on which object this code does point. In my eyes, it points to global object of DOM of Firefox.
PS: In case I'm wrong, correct me please.