window.releaseEvents()

JavaScript1.2+, JScript3.0+ Nav4+, IE4+ Syntax

							window.releaseEvents(event)
window.releaseEvents(event1 | event2 | eventN)

Description

The releaseEvents() method of the Window object releases all previously captured events of the event type passed. These events can be captured with the Window.captureEvents() method. The events that can be released are as follows:

  • Event.ABORT

  • Event.BLUR

  • Event.CHANGE

  • Event.CLICK

  • Event.DBLCLICK

  • Event.DRAGDROP

  • Event.ERROR

  • Event.FOCUS

  • Event.KEYDOWN

  • Event.KEYPRESS

  • Event.KEYUP

  • Event.LOAD

  • Event.MOUSEDOWN

  • Event.MOUSEMOVE

  • Event.MOUSEOUT

  • Event.MOUSEOVER

  • Event.MOUSEUP

  • Event.MOVE

  • Event.RESET

  • Event.RESIZE

  • Event.SELECT

  • Event.SUBMIT

  • Event.UNLOAD

After one of these events has ...

Get Pure JavaScript now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.