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