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