| onfocus | ใช้กำหนดให้ function ทำงานเมื่อ anchor ได้รับ focus |
|---|
property:onfocus = function;
return type:void
content:ใช้กำหนดให้ function ทำงานเมื่อ anchor ได้รับ focus
example:var tagAnchor = document.getElementById ( "bamboo" ); tagAnchor.onload = function() { alert ( "anchor gain focus" ); }