Home >Web Front-end >JS Tutorial >How can I make jQuery's `resize` event function execute only once after resizing?
Calling jQuery RESIZE Event Only Once After Resizing
When working with the jQuery resize event function, you may encounter situations where you want the function to execute only once when the browser finishes resizing. However, the default behavior is to call the function continuously during the resizing process.
To overcome this, you can utilize a technique called "debouncing." Here's how it works:
$(window).resize(() => { let timer; if (timer) { clearTimeout(timer); } timer = setTimeout(() => { // Your code to execute after resizing is complete }, 50); // Adjust the delay as per your requirement });
By implementing this technique, you can call the resize event function a single time after the browser finishes resizing, effectively resolving the issue of continuous function calls during the resizing process.
The above is the detailed content of How can I make jQuery's `resize` event function execute only once after resizing?. For more information, please follow other related articles on the PHP Chinese website!