| onblur | ใช้กำหนดให้ function ทำงานเมื่อ button สูญเสีย focus |
|---|
property:onblur = function;
return type:void
content:ใช้กำหนดให้ function ทำงานเมื่อ button สูญเสีย focus
example:var tagButton = document.getElementById ( "bamboo" ); tagButton.onblur = function() { alert ( "button loss focus" ); }