| onmouseout | ใช้กำหนดให้ function ทำงานเมื่อ mouse ออกนอก area |
|---|
property:onmouseout = function;
return type:void
content:ใช้กำหนดให้ function ทำงานเมื่อ mouse ออกนอก area
example:var tagArea = document.getElementById ( "bamboo" ); tagArea.onmouseout = function() { alert ( "mouse out area" ); }