--- title: GlobalEventHandlers.onresize slug: Web/API/GlobalEventHandlers/onresize tags: - API - DOM - Propiedad translation_of: Web/API/GlobalEventHandlers/onresize ---
{{ ApiRef() }}
La propiedad GlobalEventHandlers.onresize contiene un {{event("Event_handlers")}} desencadenado cuando un evento {{event("resize")}} es recibido.
window.onresize = funcRef;
funcRef
es una referencia a una función.window.onresize = doFunc;
<html> <head> <title>onresize test</title> <script type="text/javascript"> window.onresize = resize; function resize() { alert("resize event detected!"); } </script> </head> <body> <p>Resize the browser window to fire the resize event.</p> </body> </html>
El evento resize es activado después de que la ventana ha sido redimensionada.
Especificación | Status | Comentario |
---|---|---|
{{SpecName('HTML WHATWG','webappapis.html#handler-onresize','onresize')}} | {{Spec2('HTML WHATWG')}} |