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