-
Notifications
You must be signed in to change notification settings - Fork 100
Home
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;
}