Skip to content

Instantly share code, notes, and snippets.

@sTiLL-iLL
Last active December 21, 2015 08:38
Show Gist options
  • Save sTiLL-iLL/6279087 to your computer and use it in GitHub Desktop.
Save sTiLL-iLL/6279087 to your computer and use it in GitHub Desktop.
more helpful JS functions for your pleasure!
// Check if cookies are enabled
$(document).ready(function() {
var dt = new Date();
dt.setSeconds(dt.getSeconds() + 60);
document.cookie = "cookietest=1; expires=" + dt.toGMTString();
var cookiesEnabled = document.cookie.indexOf("cookietest=") != -1;
if(!cookiesEnabled){
//cookies are not enabled
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment