JSFiddle - React, Tailwind, and code Playground

by hendriono

HTML

<br/><br/><br/>
<a href="http://www.google.com">External 1</a>
<a href="http://www.hendriono.web.id/">External 2</a>
<a href="/">Internal 1</a>
<a href="contactus.html">Internal 2</a>

JavaScript

jQuery(document).ready(function(){
target_luar();
});
function target_luar(){
    try{
        if(top.location != location){jQuery("a[href^='http']").not("[href*='"+location.host+"']").attr('target','_blank');}
        }
    catch(err){}
}