Move mouse pointer in JavaScript

I don’t know about moving the actual rendered mouse pointer, but could you just set the focus on the element?

document.getElementById('the_text_input_id').focus()

Leave a Comment