Download jQuery
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>
I try to get a popup to download only once, and then not show again for another 31 days.
<script type="text/javascript"><!--
jQuery(document).ready(function()
{
if (jQuery.cookie('test_status') != '1')
{
setTimeout(function()
{
jQuery('.lightbox-handle').reveal()
jQuery('.lightbox-handle').click();
jQuery.cookie('test_status', '1', { expires: 31});
}, 1000);
}
});
</script>
source
share