Cross browser check are http cookies enabled
Code example will return boolean value.
var cookies = navigator.cookieEnabled ||
("cookie" in document && (document.cookie.length > 0 ||
(document.cookie = "test").indexOf.call(document.cookie, "test") > -1));
More at: http://stackoverflow.com/questions/6125330/javascript-navigator-cookieenabled-browser-compatibility