0

I'd like to help the site visitor navigate a page on my site. For this I'd like to have a javascript auto navigation that will place the pointer on different page elements. Is there a way in javascript to place the pointer on the desired page elements: div, button, span...?

user823527
  • 3,644
  • 17
  • 66
  • 110

2 Answers2

1

Similar question asked here : Move Mouse Cursor Javascript

Basically your options are using the method in the linked post, or using libraries like http://amberjack2.org/ to visually guide your users around the page / site.

Community
  • 1
  • 1
smqplus
  • 253
  • 1
  • 4
0

you can not move the pointer using javascript. you can only set the focus to an element of your choice.

Andreas Linden
  • 12,489
  • 7
  • 51
  • 67