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