The resize() method is an inbuilt method in jQuery which is used when the browser window change its size.
Syntax:
$(selector).resize(function)
Parameter: This method accepts single parameter function which is optional. It is used to specify the function to run when the resize event is called.
Return Value: This method returns the selected element with increases its size.
Below example illustrates the resize() method in jQuery:
Example:
<!DOCTYPE html> < html > < head > < title >The resize method</ title > < script src = </ script > <!-- jQuery code to show the working of this method --> < script > x = 0; $(document).ready(function() { $(window).resize(function() { $("p").text(x += 1); }); }); </ script > < style > div { width: 150px; height: 100px; padding: 20px; border: 2px solid green; font-size: 20px; } </ style > </ head > < body > < div > <!-- press "ctrl" and "+" key together and see the effect --> Welcome to GfG! < br > < p >0</ p > times. </ div > </ body > </ html > |
Output:
Before click anything.
After clicking 2 times “ctrl” and “+” key together in keyboard.
leave a comment
0 Comments