Check documentation for the latest version of dhtmlxSuite onMouseMoving DHTMLX Docs

onMouseMoving

fires when the mouse pointer is moved over a list

void onMouseMoving(Event ev);
evEventa native event object

Example

myList.attachEvent("onMousemoving", function (ev){
    // your code here
});

Details

The event name is case-insensitive.

Back to top