I am trying to set a cookie with a delayed amount of time.
I want the cookie to be set after 80 minutes on the page.
here is my code -
$(document).ready(function() {
// Set the cookie after 81 mins so the next visit has the button
$.cookie('EVGSalesLetter', 'visited').delay(4860000);
});