このリンクが Safari で機能しないのはなぜですか? をクリックすると、Click here
と が開きhttp://othersite.com
ますhttp://mysite.com/profile
。問題は、開くだけでhttp://mysite.com/profile
、の新しいタブが開かないことですhttp://othersite.com
。これは Chrome と firefox で動作します。どうすれば Safari で動作させることができますか?
html
<a target="_blank" onclick="redirect()" href="http://othersite.com">Click here</a>
JavaScript
function redirect(){
location.href = 'http://mysite.com/profile';
}