VisualViewport: resize event
The resize event of the VisualViewport interface is fired when the visual viewport is resized.
Syntax
Use the event name in methods like addEventListener(), or set an event handler property.
addEventListener('resize', event => { })
onresize = event => { }
Event type
A generic Event.
Examples
You can use the resize event in an addEventListener method:
visualViewport.addEventListener('resize', function() {
/* ... */
});
Or use the onresize event handler property:
visualViewport.onresize = function() {
/* ... */
};
Specifications
| Specification |
|---|
| Visual Viewport API # events |
| Visual Viewport API # dom-visualviewport-onresize |
Browser compatibility
BCD tables only load in the browser