| onfocus | จะทำงานตาม function ที่กำหนด เมื่อ iframe ได้รับ focus |
|---|
property:onfocus = function;
return type:void
content:จะทำงานตาม function ที่กำหนด เมื่อ iframe ได้รับ focus
example:var tagIFrame = document.getElementById ( "bamboo" ); tagIFrame.onfocus = function () { alert ( "welcome" ); }