MediaWiki:Common.js: Difference between revisions

Jump to navigation Jump to search
(Blanked the page)
No edit summary
Line 1: Line 1:
$(document).ready(function() {
  if(mw.config.wgUserId === null){


$("a").each(function() {
    if ($('[href$="Investigator:"]', this).length()) {
        alert("Investigator Link Found");
    }
});
}
});

Revision as of 19:03, 4 December 2018

$(document).ready(function() {
   if(mw.config.wgUserId === null){


$("a").each(function() {
    if ($('[href$="Investigator:"]', this).length()) {
        alert("Investigator Link Found");
    }
});


}
});