Recent Posts

Caution: Greetings to all visitors. The site is working in short. Links Please skip the link to view any topic and thank you for visiting
header ads

Doesn't work in IE

This little function opens links in a new window in all browsers except IE / Edge:

function externalLinks() {
for(var c = document.getElementsByTagName("a"), a = 0;a < c.length;a++)
{ var b = c[a]; b.getAttribute("href") && b.hostname !== location.hostname && (b.target = "_blank") } } ; externalLinks();

Code (markup):
Does anyone know why?

from JavaScript https://ift.tt/32esX0v
via IFTTT

Post a Comment

0 Comments