| onselect | ใช้กำหนดให้ function ทำงานเมื่อมีการลากแถบสีคลุมข้อความใน textarea |
|---|
property:onselect = function;
return type:void
content:ใช้กำหนดให้ function ทำงานเมื่อมีการลากแถบสีคลุมข้อความใน textarea
example:var tagTextArea = document.getElementById ( "bamboo" ); tagTextArea.onselect = function() { alert ( "textarea be selected" ); }