onMouseOut

fires when the mouse was moved out from the specified item

void onMouseOut(Event e);
eEventa native event object

Example

some.attachEvent("onMouseOut", function(e){
    //... some code here ... 
});

Related samples

See also
Back to top