Skip to content

Instantly share code, notes, and snippets.

@aratak
Created December 14, 2011 09:46
Show Gist options
  • Save aratak/1475910 to your computer and use it in GitHub Desktop.
Save aratak/1475910 to your computer and use it in GitHub Desktop.
is cookie enabled?
(function($) {
$.cookieEnabled = function () {
var key = 'testCookieEnabled';
var value = '1';
$.cookie(key, value, { path: '/' });
return $.cookie(key) == value;
};
$(document).ready(function(){
if( !$.cookieEnabled() ) {
window.location = "/cookiesdisabled.html";
}
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment