J
jasiu86
welcome,
I have this problem:
I open a new window in the frame that redirects the user to the page
with Gmail, and at the same time it logs on.
gmail loads in the new window, but when I click Calendar or Documents
in the upper left corner of the page, links open in parent window in
tabs.
I want to open in the same window (with Gmail) in the tabs.
<code>
function openNewWindow(el, name)
{
var wnd = window.open('', typeof name != 'undefined' ? name : '',
'menubar=yes,toolbar=yes,location=yes,directories=no,status=yes,scrollbars=yes,resizable=yes');
var komunikat = "Proszê czekaæ, trwa ³adowanie...";
wnd.parent = wnd;
wnd.focus();
wnd.document.open();
wnd.document.write(html);
wnd.document.close();
return true;
}
</code>
I have this problem:
I open a new window in the frame that redirects the user to the page
with Gmail, and at the same time it logs on.
gmail loads in the new window, but when I click Calendar or Documents
in the upper left corner of the page, links open in parent window in
tabs.
I want to open in the same window (with Gmail) in the tabs.
<code>
function openNewWindow(el, name)
{
var wnd = window.open('', typeof name != 'undefined' ? name : '',
'menubar=yes,toolbar=yes,location=yes,directories=no,status=yes,scrollbars=yes,resizable=yes');
var komunikat = "Proszê czekaæ, trwa ³adowanie...";
html += "</body></html>";var html = said:
wnd.parent = wnd;
wnd.focus();
wnd.document.open();
wnd.document.write(html);
wnd.document.close();
return true;
}
</code>