Skip to content

Instantly share code, notes, and snippets.

@h4
Created April 2, 2012 20:27
Show Gist options
  • Save h4/2287004 to your computer and use it in GitHub Desktop.
Save h4/2287004 to your computer and use it in GitHub Desktop.
Объекты history, screen и navigator
<form>
<input type=button value="Назад" onclick="history.back()">
</form>
var h = history.length;
document.write("До этой страницы вы посетили" + h + " страниц.")
document.write("<p>Размеры экрана: " + screen.width + "x" + screen.height);
document.write("<p>Рабочая область экрана: " + screen.availWidth + "x" + screen.availHeight);
var x = navigator;
document.write("CodeName: " + x.appCodeName + "<br>");
document.write("Name: " + x.appName + "<br>");
document.write("Version: " + x.appVersion + "<br>");
document.write("Platform: " + x.platform + "<br>");
document.write("UA: " + x.userAgent + "<br>");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment