window.outerWidth का प्रयोग करें और window.outerHeight ब्राउज़र का आकार बदलने पर विंडो का आकार प्राप्त करने के लिए जावास्क्रिप्ट में ईवेंट।
उदाहरण
ब्राउज़र विंडो के आकार की जांच करने के लिए घटनाओं के साथ काम करने के लिए आप निम्न कोड को चलाने का प्रयास कर सकते हैं -
<!DOCTYPE html> <html> <head> <script> function resizeFunction() { var val = "Window Width=" + window.outerWidth + ", Window Height=" + window.outerHeight; document.getElementById("test").innerHTML = val; } </script> </head> <body onresize = "resizeFunction()"> <p>Resize browser window and check the window (browser window) height and width again.</p> <p id = "test"> </p> </body> </html>