vote up 0 vote down star
1

It opens neither a tab nor a window: the code for a Google Gadget here. If you know 'target="_blank"' from HTML, I am looking for a similar tool for Google Gadgets. More precisely, I cannot understand why the JavaScript piece does not work:

window.open("http://www.google.com/");
flag

I might be overlooking, but what is the actual question?.. What element are you trying to add the target to? – Quintin Robinson Jul 1 at 19:35
1  
Javascript is for web pages, not XML documents! – Josh Stodola Jul 1 at 20:31
Josh: It is Googe Gadget where I have the script. Sorry for being confusing. – Masi Jul 1 at 22:04
Ahem, @Masi: Don't you think you changed the whole meaning of the question? – Boldewyn Jul 4 at 20:39
@Masi @Boldewyn Thank you for drawing my attention here! – Masi Jul 4 at 20:50

3 Answers

vote up 0 vote down

Like this?

searchUrl += escape(query);
thenewwindow=window.open(searchUrl,'Google','height=600,width=450');
return false;
link|flag
vote up 2 vote down

Open a new window with that target instead of replacing the current’s window URL:

var query = "bijection";
var searchUrl = "http://www.google.com/search?q=";
if (query != "" && searchUrl != "") {
    searchUrl += escape(query);
    var newWindow = window.open(searchUrl, '_blank');
    return false;
}
link|flag
It looks promising. How did you get it working? I tried: code.google.com/apis/ajax/playground, Google Gadget editor and even the navbar in my browser. Anything does not happen. – Masi Jul 1 at 19:49
vote up 3 vote down

Well, if you want to open the new window, do it explicitly.

var query = "bijection";
var searchUrl = "http://www.google.com/search?q=";

if (query != "" && searchUrl != "") {
    searchUrl += escape(query);
    window.open(searchUrl); //You can pass additional parameters, look for window.open examples on the Internet.
    return false;
}

The target attribute is for link element () which instructs browser to open the URL in new window if user clicks on it.

link|flag
What is then for this thing? Is it just open? But what is the parameter to open it in new tab? – Masi Jul 1 at 19:52
Look at window.open examples here. javascript-coder.com/window-popup/… And I don't think you can specify that new window should be opened in a tab. – SolutionYogi Jul 1 at 20:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.