Advertisement
Guest User

Untitled

a guest
Sep 17th, 2015
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. window.onload = function() {
  2.   if (window.location.href === 'http://www.mysite.com/done/') {
  3.     console.log('matched the url!');
  4.     //do stuff
  5.   } else {
  6.     console.log('did not match output :(');
  7.   }
  8. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement