Skip to content Skip to sidebar Skip to footer

How Do You Send A Mousemove Event From An Iframe Back To The Parent Using Jquery?

Using jquery, how would I send an iframe's window mousemove events back to its parent, and the parent will see the event with the mouse coordinates mapped to it's own window? Both

Solution 1:

I solved this problem by overlaying the iframe with an absolutely positioned transparent div. This way, the parent always gets the mousemove events.


Post a Comment for "How Do You Send A Mousemove Event From An Iframe Back To The Parent Using Jquery?"