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