0

Is is possible to change the mouse pointer(x,y) to some (x2,y2) location when a page is loaded? I want to move my mouse pointer on a particular div, when the page is loaded.

Yogesh Gupta
  • 170
  • 1
  • 15

2 Answers2

0

Please see the following fiddle, see if you can find something useful

fidde

http://jsfiddle.net/jaakkytt/9uczV/

FreshPro
  • 875
  • 3
  • 14
  • 35
0

Try this:

$("div-id").mouseover(function(){

    $("div-id").css("cursor","pointer");
});
Mr.G
  • 3,413
  • 2
  • 16
  • 20