Open main menu

Changes

MediaWiki:Common.js

125 bytes added, 5 years ago
no edit summary
pageId.load("/wiki/"+ page + " .mw-parser-output", function(){
anchors = $( this ).find("a");
console.log( anchors );
anchors.on("click", function(e){
e. preventDefault();
newPage link = $( this ).attr("href").split("https://universityinnovation.org/wiki/"); if( link.length > 1){ newPage = link.pop(); loadWikiPage( newPage ); } else { $( this ).attr('target', '_blank').get(0).click(); }
});
});