Soldato
I'm looking to have a CSS popup on a sites homepage displaying a current offer. What's the best and cleanest way of doing this?
// if cookie doesn't exist, fire the modal and set cookie
if ($.cookie('offer').length == 0){
$('#offer').reveal();
$.cookie('offer', 'seen', { expires: 7 });
}