Changes

Jump to navigation Jump to search
no edit summary
Line 6: Line 6:  
$( '.external' ).click( function (e) {
 
$( '.external' ).click( function (e) {
 
                 e.preventDefault();  
 
                 e.preventDefault();  
var url = $(this).attr('href');  
+
        var otherWindow = window.open();
                window.open(url, '_blank');
+
otherWindow.opener = null;
 +
otherWindow.location = this;
 +
return false;
 
} );
 
} );
  

Navigation menu