Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
Pages: 1
#1 2010-01-26 21:10:08
- progre55
- Member
- Registered: 2006-05-02
- Posts: 668
<txp:linklist /> : Open In New Window
Is there an easy way to alter this so that the links open in a new window.
Thank you in advance for your assistance.
progre55
Offline
#2 2010-01-26 22:43:15
- els
- Moderator
- From: The Netherlands
- Registered: 2004-06-06
- Posts: 7,458
Re: <txp:linklist /> : Open In New Window
You can use jquery to open links in a new window, for example:
<script type="text/javascript">
$(document).ready(function(){
$('a.external').click(function() {
window.open(this.href);
return false;
});
});
</script>
and something like this in your links form:
<a class="external" href="<txp:link_url />" title="<txp:link_name />"><txp:link_name /></a>
Offline
Pages: 1