ここにこのスクリプトがあります。主な目的は、指定されたリンクを新しいタブ/ウィンドウで開き、現在のウィンドウ (新しいタブではなく、スクリプトが実行された場所) をリダイレクトすることです。
以下のように動作します。クリック イベントをリッスンするリンクを指定します。クリックされると、2 つの命令が起動します。新しいタブが開き、現在のウィンドウがリダイレクトされます。
問題は、このスクリプトがクロムで機能することですが、サファリでは、このスクリプトは指定された URL にリダイレクトされるだけで、新しいタブ/ウィンドウは開きません。
function openTab(url) {
// Create link in memory
var a = window.document.createElement("a");
a.target = '_blank';
a.href = url;
// Dispatch fake click
var e = window.document.createEvent("MouseEvents");
e.initMouseEvent("click", true, true, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);
a.dispatchEvent(e);
}
var aNode = document.getElementsByTagName('a'),
/* this is current link's url, just click copy link address you want to affect, and paste it here between ''*/
/* it supports multiple buttons with different links */
currentUrl = ['https://www.google.com/intl/en/ads/'],
/*this link loads in new tab */
newTabUrl = 'http://www.google.com/',
/* this link loads after the 'newTabUrl' is opened */
redirectUrl = 'http://www.youtube.com/';
for (var t = 0; currentUrl["length"] > t; t++) {
for (i in aNode) {
if (aNode[i].href && aNode[i].href == currentUrl[t]) {
aNode[i].href = redirectUrl; // without this the page will be not redirected in chrome (second instruction in the addEventListener, function below does not fire up somehow...)
aNode[i].addEventListener('click', function(){
openTab(newTabUrl);
window.location = redirectUrl;
console.log('fired'); //debugging
});
console.log('affected!'); //debugging
}
console.log(i); //debugging
}
}