You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
manikandan9500 edited this page Aug 25, 2022
·
1 revision
windos
script>
function show() {
var h = window.innerHeight;
var w = window.innerWidth;
var l = window.location;
var c = window.closed;
document.getElementById("prop").innerHTML =
"Frame's Height: "
+ h + " "
+ "Frame's Width: "
+ w + " "
+ "Window location:"
+ l
+ " "
+ "Window Closed: "
+ c;
}