Advertisement
Guest User

Untitled

a guest
Sep 4th, 2012
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function change(url) {
  2.     if (url == document.location.href){
  3.         kango.console.log('page is ' + url);
  4.         return;
  5.     } else {
  6.         kango.console.log('New page is ' + document.location.href);
  7.         clearInterval(timer);
  8.         time();
  9.     }
  10. }
  11.  
  12. function time(){
  13.     timer = setInterval(change, 1000, document.location.href);
  14. }
  15.  
  16. if(window == window.top) {
  17.     time();
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement