Click here to Skip to main content
15,899,679 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Can I call Javascript Function on zoom-in or zoom-out webpage? As I want to call a javascript function when the size of web page is changing.

Plz help me.

Thanks
Posted

Yes friends.... Found the solution....

JavaScript
window.onresize = resize;
function resize() {
    alert("Windows is resized...");
}
 
Share this answer
 
See the below fiddle:
jsFiddle for resize the window
Hope it helps :)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900