method:releaseEvent ( eventName );
return type:void
content:การยกเลิกการตรวจจับเหตุการณ์โดยการ Capture ( ของ browser Netscape )
example:var showMessage = function()
{
alert ("welcome to bamboolabcode");
}
var tagDiv = document.getElementById( "bamboo" );
tagDiv.captureEvent ( mouseover | mouseout );
tagDiv.onmouseover = showMessage;
tagDiv.onmouseout = showMessage;
tagDiv.releaseEvent ( mouseout );
comment:สามารถ capture ได้หลายๆ event พร้อมๆกัน โดยใช้เครื่องหมาย "|" คือหมายถึง OR
ตัวแปร eventName จะไม่มีคำว่า "on" นำหน้า