Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2017
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. gBrowser.tabContainer.addEventListener('load', function load(event) {
  2. window.removeEventListener("load", load, false);
  3. var urlString = 'http://stackoverflow.com/questions/';
  4. if (gBrowser.currentURI.spec.startsWith(urlString)) {alert('ReadystateComplete')};
  5. }, false);
  6. gBrowser.tabContainer.addEventListener('TabSelect', function() {
  7. var urlString = 'http://stackoverflow.com/questions/';
  8. if (gBrowser.currentURI.spec.startsWith(urlString)) {alert('TabSelected')}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement