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.

Bubbles No
Cancelable No
Interface SVGEvent
Event handler property onload

Examples

svgElem.addEventListener('load', () => {
  console.log('SVG loaded.');
})

Specifications

Specification
Scalable Vector Graphics (SVG) 1.1 (Second Edition)
# LoadEvent

Browser compatibility

BCD tables only load in the browser