Open All Links (even internals) In New Tab

Open All Links (even internals) In New Tab 1.0.0

No permission to download

Dadparvar

Well-known member
Dadparvar submitted a new resource:

Open All Links (even internals) In New Tab - Open all links in your xenforo in new tab

Hi,

Today I saw some where that some one needed such an add-on.

This is a simple template based add-on that will cause all links in your xenforo to be opened in new tab.
Both externals (that by default are opening in new tab) and internals (that by default are opening in the same tab)

Hope to be useful.

Regards

Read more about this resource...
 
If you just want to Force internal links in threads and posts to be opened in new tab, don't install the add-on (because it forces all links in all places in your site to be opened in new tab). Just Open "message" template of your style and add this code to first line:
Code:
<script>
window.onload = function() {
   if (!document.getElementsByTagName) return false;
   var links = document.getElementsByTagName("a");
   for (var i=0; i<links.length; i++) {
      if (links[i].getAttribute("class") == "internalLink") {
         links[i].onclick = function() {
            return !window.open(this.href);
         }
      }
   }
}
</script>
 
Top Bottom