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