PopUp on site that AutoRefreshes

by 2 replies
2
Hey guys,

I was wondering, is it possible to install an exit pop up on a site that auto refreshes itself? Can anyone do it?
#website design #autorefreshes #popup #site
  • Try putting this javascript code in your popup window:

    window.onunload = function(){
    window.opener.location.reload();
    };
  • are you using wordpress if yes then there are many free plugins that can help you but if you are using html base site then use this code :

    window.onunload = function(){
    window.opener.location.reload();
    };

Next Topics on Trending Feed