SVGElement: resize event
The resize
event is fired when an SVG document is being resized. This event is only applicable to outermost SVG elements and is dispatched after the resize operation has taken place.
This basically implements the standard resize
DOM event.
Bubbles | No |
---|---|
Cancelable | No |
Interface | SVGEvent |
Event handler property | onresize |
Examples
svgElem.addEventListener('resize', () => {
console.log('SVG resized.');
})
Specifications
Specification | Status | Comment |
---|---|---|
Scalable Vector Graphics (SVG) 2 The definition of 'event changes in SVG2' in that specification. |
Candidate Recommendation | Initial definition |
Browser compatibility
BCD tables only load in the browser