Skip to content

Instantly share code, notes, and snippets.

Created June 4, 2016 08:33
Show Gist options
  • Save anonymous/ad99832f58ed5ea7d5bbea232a7459c0 to your computer and use it in GitHub Desktop.
Save anonymous/ad99832f58ed5ea7d5bbea232a7459c0 to your computer and use it in GitHub Desktop.
Simle jQuery to show a popup at 3rd page of a visitor
jQuery(document).ready(function ($) {
{
var visited = Cookies.get('visited');
if (visited == undefined) {
Cookies.set('visited', 0, {path: '/'});
}
else if (visited < 2) {
Cookies.set('visited', ++visited, {path: '/'});
}
else if (visited == 2) {
setTimeout(function () {
$(".popmake-17158").trigger("click");
}, 3000);
Cookies.set('visited', ++visited, {expires: 30, path: '/'});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment