This topic is locked

Open Mini in _Blank page

1/17/2008 4:14:01 PM
Calendar Template general questions
B
bleckron author

Sergey:
How would I change the window.location javascript so that it will open the calender in a blank window/tab instead of in the parent window?
Best Regards

admin 1/18/2008

To make any link open in new window use target=_blank

<a href=... target=_blank>
B
bleckron author 1/21/2008

To make any link open in new window use target=_blank


<a href=... target=_blank>


Yes, but where in the code woul I insert this. i.e.
<a class=my_link href="" onclick="window.location.href=my_url+'Monthly_list.'+my_ext+'?mon='+(sDate.getMonth()+1)+'&yr='+sDate.getFullYear(); return false; target=_blank" style="TEXT-DECORATION: none;">

admin 1/22/2008

<a target=_blank class=my_link href="" onclick="window.location.href=my_url+'Monthly_list.'+my_ext+'?mon='+(sDate.getMonth()+1)+'&yr='+sDate.getFullYear(); return false;" style="TEXT-DECORATION: none;">