wpgenie

Reload page after countdown expire

Feb 14th, 2022
1,396
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. jQuery(document).ready(function($){
  2.     // Custom jQuery goes here
  3.     jQuery( document.body).on('wcl-close-lottery', function(e, response){
  4.         if(response != null ) {
  5.             setTimeout(
  6.               function()
  7.               {
  8.                location.reload();
  9.               }, 2000);
  10.  
  11.         }
  12.     });
  13. });
  14.  
Advertisement
Add Comment
Please, Sign In to add comment