Simulate Mouse Over in Vimperator plugin

28,391

Solution 1

here's some code to start with to create the event, simpler and works for more browsers (if you don't need to specify exact mouse coordinates)

        if( document.createEvent ) {
            var evObj = document.createEvent('MouseEvents');
            evObj.initEvent( 'mouseover', true, false );
            elem.dispatchEvent(evObj);
        } else if( document.createEventObject ) {
            elem.fireEvent('onmouseover');
        }

hope that helps

Solution 2

In case anyone bumps into this looking for a framework agnostic way to fire any HTML and Mouse event (and set some options, if needed), have a look here: How to simulate a mouse click using JavaScript?

Share:
28,391
Stephan
Author by

Stephan

Updated on November 14, 2020

Comments

  • Stephan
    Stephan over 3 years

    I'm attempting to write a Vimperator plugin to allow use of hints mode to simulate mouse over on drop down menus. I have the hints mode working and can correctly choose elements that have mouseover events attached. The problem is my function to simulate the mouse over is not working. This is what I currently have:

    function SimulateMouseOver(elem)
    {
        var evt = elem.ownerDocument.createEvent('MouseEvents');
        evt.initMouseEvent('mouseover',true,true,
            elem.ownerDocument.defaultView,0,0,0,0,0,
            false,false,false,false,0,null);
        var canceled = !elem.dispatchEvent(evt);
        if(canceled)
            alert('Event Cancelled');
    }
    

    The above code works for some pages but not for others. For example it doesn't work on AccuWeather. Any ideas how to simulate a mouse over that will work for most pages?