Search completed in 1.25 seconds.
6 results for "captureEvents":
Window.captureEvents() - Web APIs
WebAPIWindowcaptureEvents
the window.captureevents() method registers the window to capture all events of the specified type.
... syntax window.captureevents(eventtype) eventtype is a combination of the following values: event.abort, event.blur, event.click, event.change, event.dblclick, event.dragddrop, 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.
...--> <script> function reg() { window.captureevents(event.click); window.onclick = page_click; } function page_click() { alert('page click event detected!'); } </script> </head> <body onload="reg();"> <p>click anywhere on this page.</p> </body> </html> notes events raised in the dom by user activity (such as clicking buttons or shifting focus away from the current document) generally pass through the high-level window and document objects first before arriving at the object that initiated the event.
...And 2 more matches
nsIDOMNSHTMLDocument
MozillaTechXPCOMReferenceInterfacensIDOMNSHTMLDocument
inherits from: nsisupports last changed in gecko 6.0 (firefox 6.0 / thunderbird 6.0 / seamonkey 2.3) method overview void captureevents(in long eventflags); void clear(); boolean execcommand(in domstring commandid, in boolean doshowui, in domstring value); boolean execcommandshowhelp(in domstring commandid); obsolete since gecko 14.0 domstring getselection(); nsidomdocument open(in acstring acontenttype, in boolean areplace); boolean querycommandenabled(in domstring commandid); boolean querycommandindeterm(in domstring commandid); boo...
...obsolete since gecko 6.0 methods captureevents() provided for compatibility with netscape 4.x, but does not actually do anything.
... void captureevents( in long eventflags ); parameters eventflags clear() used to reset a document to blank, but deprecated since gecko 1.0 and provided for compatibility with netscape 4.x; use open() and close() instead.
Document - Web APIs
WebAPIDocument
document.captureevents() see window.captureevents.
Index - Web APIs
WebAPIIndex
4897 window.captureevents() api, dom, dom_0, gecko, method, non-standard the window.captureevents() method registers the window to capture all events of the specified type.
Window.releaseEvents() - Web APIs
WebAPIWindowreleaseEvents
see also window.captureevents ( ).
Window - Web APIs
WebAPIWindow
window.captureevents() registers the window to capture all events of the specified type.