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 theresize
event.function()
- This is the event handler function that will be called when theresize
event is triggered.console.log('Window was resized')
- This is the code that will be executed when theresize
event is triggered.
Helpful links
More of Jquery
- How do I use jQuery ZTree to create a hierarchical tree structure?
- How do I use jQuery to zip files?
- 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 use jQuery to select elements with an XPath expression?
- How do I use the jQuery window load function?
- How can I use jQuery in WordPress?
- How can I use jQuery to access data attributes?
- How do I use the jQuery when function?
See more codes...