SVGElement: load event
The load
event fires on an SVGElement
when it is loaded in the browser, e.g. in the DOM in the case of an embedded <svg>
. It is basically the same as the standard load
DOM event.
This event is not cancelable and does not bubble.
Syntax
Use the event name in methods like addEventListener()
, or set an event handler property.
js
addEventListener("load", (event) => {});
onload = (event) => {};
Event type
A generic Event
.
Examples
js
svgElem.addEventListener("load", () => {
console.log("SVG loaded.");
});
Specifications
Specification |
---|
Scalable Vector Graphics (SVG) 2 # LoadEvent |
Browser compatibility
Report problems with this compatibility data on GitHubdesktop | mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
load event |
Legend
Tip: you can click/tap on a cell for more information.
- Full support
- Full support
- See implementation notes.
- Uses a non-standard name.
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.