Tuto Auto-Open Links :)

Okay , kalau pakai code ney ,
orang yang tekan link kat blog you automatik akan open new tab laa ! :)

Copy then paste code ney kat HTML Jvascript :)

<!-- code for turning all non-blog links to new page links -->
<script type="text/javascript" language="javascript">
var arr = document.getElementsByTagName("a"); //get all links in the page
for(var i = 0; i < arr.length; i++)
{
if(arr[i].href.indexOf("Your URL") < 0 //not links that are 'inside' blog
&& arr[i].href.indexOf("javascript:") < 0) //not javascript links
arr[i].target = "_blank";
}
</script>

Thanks for the view :)

No comments:

Post a Comment