Created
April 2, 2012 20:27
-
-
Save h4/2287004 to your computer and use it in GitHub Desktop.
Объекты history, screen и navigator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form> | |
<input type=button value="Назад" onclick="history.back()"> | |
</form> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var h = history.length; | |
document.write("До этой страницы вы посетили" + h + " страниц.") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.write("<p>Размеры экрана: " + screen.width + "x" + screen.height); | |
document.write("<p>Рабочая область экрана: " + screen.availWidth + "x" + screen.availHeight); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment