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