Changes

From Life After BOB Wiki
83 bytes removed ,  14:26, 9 June 2021
no edit summary
Line 6: Line 6:  
$( '.external' ).click( function (e) {
 
$( '.external' ).click( function (e) {
 
                 e.preventDefault();  
 
                 e.preventDefault();  
                console.log("external url");
+
var url = $(this).attr('href');  
var otherWindow = window.open();
+
                window.open(url, '_blank');
//otherWindow.opener = null;
  −
//otherWindow.location = this;
  −
//return false;
   
} );
 
} );