Page 1 of 1

click on link - new tab or blank page

Posted: Thu May 15, 2014 12:43 pm
by bastiaan.c
Hi,

If I put a link in the ticket system and I click on it it acts like a _self . I would like to click on a link and that it would open in a new tab or page ( _blank )
is this possible??

Thanks for all you do :-)

Re: click on link - new tab or blank page

Posted: Thu May 15, 2014 2:32 pm
by Klemen
It's not recommended according to W3C standards (let user decide where to open a new link), but if you wish you can try changing this in inc/common.inc.php

Code: Select all

<a href=\"$url\"$class>
to

Code: Select all

<a href=\"$url\" target=\"_blank\"$class>

Re: click on link - new tab or blank page

Posted: Thu May 15, 2014 2:39 pm
by bastiaan.c
Thanks, you're great :-) !!