Changes

From Life After BOB Wiki
no edit summary
Line 2: Line 2:     
//open external links in new tab
 
//open external links in new tab
$( function () {
+
 
$( '.external free' ).on( 'click', function () {
+
$( '.external free' ).on( 'click', 'a', function (e) {
var otherWindow = window.open();
+
    e.preventDefault();
otherWindow.opener = null;
+
    var url = $(this a).attr('href');  
otherWindow.location = this;
+
    console.log(url);
return false;
+
    window.open(url, '_blank');
 
} );
 
} );
} );
+
 
    
mw.loader.using( 'mediawiki.api', function () {  
 
mw.loader.using( 'mediawiki.api', function () {