onabort
This page has been flagged with the following issues:
High-level issues:
Overview Table
| Synchronous | No |
|---|---|
| Bubbles | No |
| Target | dom/Element |
| Cancelable | No |
| Default action |
Examples
The following code example shows how to handle the onabort event.
<?xml version="1.0" standalone="no"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> <svg id="outerSvgElement" width="600px" height="210px" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <!-- Required for xlink usage. --> <script type="application/ecmascript"> function handleAbortEvent(evt) { // Handle the abort event here. } window.onload = function() { var e = document.documentElement; // Root element is svg /* For the svg element, add an event listener for the onabort event. addEventListener parameters: event type, event listener pointer, 'false' = bubbling. */ e.addEventListener('SVGAbort', handleAbortEvent, false); } </script> </svg>
Notes
Remarks
The onabort event occurs when page loading is stopped before an element is loaded completely. The target of the event is the svg element. The designated element stops loading. To invoke this event, do one of the following:
- The user presses the browser's stop button before the element is loaded completely.
Syntax
Standards information
- Scalable Vector Graphics: Scripting, Section 18.4.3
Event handler parameters
- pEvt [in]
- Type: IDOMUIEventThe IDOMEvent object.
See also
Related pages (MSDN)
This article contains content originally from external sources.
Portions of this content come from the Microsoft Developer Network: [Windows Internet Explorer API reference Article]
This tool helps to make and review comments inline.
How to Use
insert instructions, with images, here