Advertisement
Guest User

Untitled

a guest
Apr 28th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. function CountDown(live) {
  2. var time = new Date();
  3. var diff = live - time;
  4. return diff;
  5. }
  6.  
  7. var liveDate = "April 28, 2016 14:19:00 PDT";
  8.  
  9. if (CountDown(new Date(liveDate))>0) { //pre-live
  10. ad_img.src="https://s.yimg.com/cv/ae/us/audience/160429/640x100xtiqj3go3.jpg";
  11. } else {//live now
  12. ad_img.src="https://s.yimg.com/cv/ae/us/audience/160429/640x100xtiqj3fzh.jpg";
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement