Advertisement
Guest User

Untitled

a guest
Sep 27th, 2013
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. tmptitle = document.title;
  2. target = document.querySelector('div#navigation ol > li:nth-child(3) > a');
  3. foo = new MutationObserver(function() {
  4.     document.title = target.innerHTML.replace("Account ","") + tmptitle;
  5. });
  6. config = {
  7.     attributes: true,
  8.     childList: true,
  9.     characterData: true,
  10. };
  11. foo.observe(target, config);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement