vote up 0 vote down star

I have a link that, when clicked, I would like it to move the position of the mouse to the right (or anywhere within the viewport, for that matter).

in code it would probably look similar to the following:

$('a#expand').click(function(e){
    $(document)
       .mouseXPos(e.pageX + 50)
       .mouseYPos(e.pageY + 50);
});

Chaining might not be necessary, of course, but a similar 'set mouse position' functionality is what I am after.

I've seen solutions to move the cursor position to a certain spot in the text, but I didn't glean much from them.

Thanks in advance for your time and help. -Michael

flag
1  
This sounds like something that will really irritate users! I hope you have a good reason for doing this, not that it's possible. – ScottE Jul 30 at 19:28
I should explain further. I'm using Brian's great hoverIntent plugin for jQuery, along with a menu that includes a linked tab that expands the menu. I'm animating the sliding out, but the hoverIntent misfires the hover off if the mouse stays still while the menu is animating. Sounds odd but this plugin catches all of the rest of the classic mouseenter/leave misfires that devs typically run across. He knows about this issue and is working on it for the next release. Being able to somehow move the mouse one pixel over would be great. Either client-side or server-side solution would be awesome. – Michael Aug 3 at 14:28

3 Answers

vote up 0 vote down

There's no way to accomplish mouse position change via JavaScript or any Client-Side Script. The only reason for that is not to give a client side script potential for abuse as stated before.

link|flag
vote up 0 vote down

There is no mechanism for moving the mouse via JavaScript.

link|flag
Any mechanism for ASP.Net, AJAX, jQuery, C#? I know the mouse position can be read via jQuery, maybe there's a way to expose it via the DOM? – Michael Aug 3 at 14:33
@Michael: No, the mouse position is read-only for JavaScript. AJAX is just method of communication for JavaScript executing on the client to talk to a server Application via HTTP. ASP.NET/C# is server side and it's scope is limited to the server it executes on. The only way to control a client's mouse is with a client side application that is running in user space which means getting them to download and install something. – CptSkippy Aug 3 at 15:24
vote up 1 vote down

I may be wrong, but I don't think it's possible to move the mouse pointer from client-side script. Given the potential for abuse, I certainly hope it isn't.

link|flag
I had definitely thought about the worry about this. Should I ever come across such a power, I'll be sure to find a solution to it and let you know. Do you know of a server-side script to do this? Thanks. – Michael Aug 3 at 14:30
@Michael: Server-side script is even less likely to move the client's mouse pointer. It may be possible to move the mouse pointer via ActiveX control (Internet Explorer only), custom plugin, .NET control, or possibly by signed Java applet. – Jason Musgrove Aug 4 at 14:48

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.