Hi,
Is there a way to open a link in a new window by default , when someone click on the link?
now you must set it manual. is it possible to open links automatic in a new window?
is there some example available who demonstrates this?
thanks
Tim,
Is there a way to open a link in a new window by default , when someone click on the link?
now you must set it manual. is it possible to open links automatic in a new window?
is there some example available who demonstrates this?
thanks
Tim,

Re: Make links open new window by default?
i already fixed by myself. thnx anyway!
solution :
set in the fckconfig.js file this line : FCKConfig.DefaultLinkTarget = '_blank';
and in the fck_link.js file the following method:
function SetDefaultTarget()
{
var target = FCKConfig.DefaultLinkTarget || '' ;
if ( oLink || target.length == 0 )
return ;
switch ( target )
{
case '_blank' :
case '_self' :
case '_parent' :
case '_top' :
GetE('cmbTarget').value = target ;
break ;
default :
GetE('cmbTarget').value = 'frame' ;
break ;
}
GetE('txtTargetFrame').value = target ;
}
and call this function in the window.onload = function ()
Tim.
Re: Make links open new window by default?
just to make it bit more clear for others, add onLoad="SetDefaultTarget();" to body tag in /fckeditor/editor/dialog/fck_link.html file