The question might look silly, but I want to control the mouse pointer inside my web application / webpage. One of my client asked me this requirement of Having the mouse pointer over the submit button automatically, which will save some time in his opinion.
I have suggested to press Enter key. But still he is not convinced.
So, is there any possibility that i could control the mouse pointer location, at-least inside the browser?
I have tried something with mousemove() function, which only helped me to find when i move the mouse pointer.
$(document).mousemove(function(){ //capture mouse movement event
alert('Mouse Pointer Moved');
$("#pageLayover").remove(); // remove our layover from the DOM
});
Looking forward for the best solution.