jquery - Triggering a JavaScript click() event at specific coordinates -


Refractory (triggers) is trying a click event. Its easy to do in jQuery but can not know how to set coordinates of the event and send them along.

Essentially, I need to trigger a click at a particular place (which is calculated before

thanks -

< Div>

/ P>

  var e = new jQuery.Event ("Click"); E.pageX = 10; E.pageY = 10; $ ("# ELEM") Trigger (E).  

Comments