I'm trying to modify some code to direct users to a "create an account" squeeze page on their first visit. I think I'm close, but I need a little help. Any advise on where I went wrong?
<script type="text/javascript">
$(document).ready(function() {
// check cookie
var visited = $.cookie("visited")
if (visited == null) {
window.location = "content/content-article.asp?ArticleID=4998"
$.cookie('visited', 'yes');
alert($.cookie("visited"));
}
// set cookie
$.cookie('visited', 'yes', { expires: 10,000, path: '/' });
});
10,000that should actually be10000or1e4? – MaxArt Jun 1 '12 at 15:58