I am using this plugin to establish a cookie
Everything works well but in IE7 & IE8
Here is my JS code:
jQuery(document).ready(function() {
jQuery(function() {
if (jQuery.cookie('shownDialog') != 'true') {
window.onload = document.getElementById('lightbox-22556401244951').click();
}
jQuery.cookie('shownDialog', 'true', {expires: 7});
});
});
Not sure why its not working in only IE7 & IE8?