jqueryHow do I use jQuery to detect window resize events?
jQuery provides a resize() event for detecting when the browser window has been resized. The resize() event can be used on any element, but is most often used on the window object.
Below is an example of using the resize() event on the window object.
$(window).resize(function() {
console.log('Window was resized');
});
When this code is run, the message Window was resized will be logged to the console every time the browser window is resized.
Code explanation
$(window)- This is a jQuery selector used to select the window object..resize()- This is a jQuery method used to bind an event handler to theresizeevent.function()- This is the event handler function that will be called when theresizeevent is triggered.console.log('Window was resized')- This is the code that will be executed when theresizeevent is triggered.
Helpful links
More of Jquery
- How do I use jQuery to zip files?
- How do I use jQuery ZTree to create a hierarchical tree structure?
- How can I use JQuery with Yii2?
- How do I use jQuery to zoom in or out on an element?
- How can I get the y position of an element using jQuery?
- How can I prevent jQuery XSS vulnerabilities?
- How can I parse XML data using jQuery?
- How do I prevent XSS attacks when using jQuery?
- How do I set the height of an element using jQuery?
- How do I use jQuery to bind an event to an element?
See more codes...