stuppid_bot

Untitled

May 9th, 2013
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function onHashChange(cb) {
  2.     var cur = location.hash;
  3.    
  4.     setInterval( function() {
  5.         if (cur != location.hash) {
  6.             cur = location.hash;
  7.             cb();
  8.         }
  9.     }, 100 );
  10. }
Advertisement
Add Comment
Please, Sign In to add comment