| onmouseup | ใช้กำหนดให้ function ทำงานเมื่อ มีการปล่อยเมาส์ที่คลิกลงบน button |
|---|
property:onmouseup = function;
return type:void
content:ใช้กำหนดให้ function ทำงานเมื่อ มีการปล่อยเมาส์ที่คลิกลงบน button
example:var tagButton = document.getElementById ( "bamboo" ); tagButton.onmouseup = function() { alert ( "button be mouse uped" ); }