Advertisement
Guest User

Untitled

a guest
Dec 14th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var arr = ['bearded','candycane','hot_chocolate','ginger','red_nose','common','candle','jumper'];
  2. $('img[src]').each(function(e){
  3.     var el = $(this).attr('src');
  4.     var repeat = true;
  5.     arr.forEach(function(e){
  6.         if(el.indexOf(e) != -1){
  7.             repeat = false;
  8.         }
  9.     });
  10.     if(repeat){
  11.         setTimeout(function(){
  12.             window.location.reload();
  13.         }, 60000);
  14.     }else{
  15.         var audio = new Audio('http://www.sample-videos.com/audio/mp3/crowd-cheering.mp3');
  16.         audio.play();
  17.         window.open(el.parent('a').attr('href'), '_blank');
  18.     }
  19. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement