Go to main content

Textpattern CMS support forum

You are not logged in. Register | Login | Help

#1 2011-08-30 21:23:56

NicChen00
Member
From: Edmonton
Registered: 2011-08-05
Posts: 15
Website

linklist open in new window or tab

how do i get links generated by <txt:linklist> to open in a tab or window?

Offline

#2 2011-08-30 22:21:11

rsilletti
Moderator
From: Spokane WA
Registered: 2004-04-28
Posts: 707

Re: linklist open in new window or tab

Use linklist as a container tag or call a form with the form attribute, in your form or contained content use lower level link tags to build the url that behaves the way you would like, such as:

<a href="<txp:link_url />" target="_blank"><txp:link_name /></a>

not tested.

Offline

#3 2011-08-30 23:31:57

MattD
Plugin Author
From: Monterey, California
Registered: 2008-03-21
Posts: 1,254
Website

Re: linklist open in new window or tab

You could also use JavaScript to make links to external sites open in a new window:

$('a').each(function() {
   var u= new RegExp('/' + window.location.host + '/');
   if(!u.test(this.href)) {
       $(this).click(function(event) {
           event.preventDefault();
           event.stopPropagation();
           window.open(this.href, '_blank');
       });
   }
});

My Plugins

Piwik Dashboard, Google Analytics Dashboard, Minibar, Article Image Colorpicker, Admin Datepicker, Admin Google Map, Admin Colorpicker

Offline

#4 2011-08-31 19:41:48

NicChen00
Member
From: Edmonton
Registered: 2011-08-05
Posts: 15
Website

Re: linklist open in new window or tab

thanks MattD and rsilletti. i was able to solve the problem.

Offline

Board footer

Powered by FluxBB