Skip to content

Instantly share code, notes, and snippets.

@metamn
Created January 31, 2011 12:35
Show Gist options
  • Save metamn/803966 to your computer and use it in GitHub Desktop.
Save metamn/803966 to your computer and use it in GitHub Desktop.
Writing a cookie with the current screen width
<script language="javascript">
writeCookie();
function writeCookie() {
var today = new Date();
var the_date = new Date("December 31, 2023");
var the_cookie_date = the_date.toGMTString();
var the_cookie = "screen="+ screen.width;
var the_cookie = the_cookie + ";expires=" + the_cookie_date;
document.cookie=the_cookie;
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment