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