| onblur | จะทำงานตาม function ที่กำหนด เมื่อ iframe สูญเสีย focus |
|---|
property:onblur = function;
return type:void
content:จะทำงานตาม function ที่กำหนด เมื่อ iframe สูญเสีย focus
example:var tagIFrame = document.getElementById ( "bamboo" ); tagIFrame.onblur = function () { alert ( "good bye" ); }