Script redirect


SUBMITTED BY: Guest

DATE: Jan. 5, 2014, 3 a.m.

FORMAT: Text only

SIZE: 393 Bytes

HITS: 1240

  1. <p>You will be redirected in <span id="counter">10</span> second(s).</p>
  2. <script type="text/javascript">
  3. function countdown() {
  4. var i = document.getElementById('counter');
  5. if (parseInt(i.innerHTML)<=0) {
  6. location.href = 'login.php';
  7. }
  8. i.innerHTML = parseInt(i.innerHTML)-1;
  9. }
  10. setInterval(function(){ countdown(); },1000);
  11. </script>

comments powered by Disqus