Opens a new window.
Arguments:
Returns: Window
Returns the window object that was opened. This returns
null if a popup blocker prevented the window from being
opened.
|
code » | ||||
Opens a new window without any real content in it.
This can be used to get around popup blockers if you need to open a window
in response to a user event, but need to do asynchronous work to determine
the URL to open, and then set the URL later.
Example usage:
var newWin = goog.window.openBlank('Loading...');
setTimeout(
function() {
newWin.location.href = 'http://www.google.com';
}, 100);
Arguments:
Returns: Window
Returns the window object that was opened. This returns
null if a popup blocker prevented the window from being
opened.
|
code » | ||||
Raise a help popup window, defaulting to "Google standard" size and name.
(If your project is using GXPs, consider using
PopUpLink.gxp .)
Arguments:
Returns: boolean
true if the window was not popped up, false if it was.
|
code » |