Changes

From Life After BOB Wiki
no edit summary
Line 3: Line 3:  
//open external links in new tab
 
//open external links in new tab
   −
$( '.external free' ).on( 'click', 'a', function (e) {
  −
    e.preventDefault();
  −
    var url = $(this a).attr('href');
  −
    console.log(url);
      +
$( '#mw-content-text' ).on( 'click', '.external free > a', function () {
 +
var otherWindow = window.open();
 +
otherWindow.opener = null;
 +
otherWindow.location = this;
 +
return false;
 
} );
 
} );