up vote 0 down vote favorite
share [g+] share [fb]

How do you make an HTML button behave just like a hyperlink where, if you click on it, it will open a browser window showing a page you want?

I understand this much. I think I will use this but instead of a link to some javascript code inside the quotes for "onclick" I want to put something simple that will launch a new browser window.

link|improve this question

78% accept rate
1  
<a target="_blank" href="...">Why not just use a hyperlink?</a>. – KennyTM Feb 24 '10 at 6:47
1  
Because, you can do stuff with buttons that you can't do with a hyperlink. IE: Boxy border which is easy to stylize... perhaps he wants to open a window and do more things as well, etc – ItzWarty Feb 24 '10 at 6:51
What about wrapping the anchor tag around the button? – Daniel T. Feb 24 '10 at 6:54
Daniel, that does work, but I dislike it because it sorta... enlarges the code by a lot, for one line. Similarly, I dislike it when people do something like <div id="amazing_div_that_is_cool" style="...something that goes on for lines and lines..."> because it becomes unreadable, whereas, using the <style> tag in the head of the document is much, much better. Basically, my rule of thumb is to keep a tag as short as possible. Of course, many [and I mean, many] people will disagree with me. – ItzWarty Feb 24 '10 at 6:58
But once again, your idea is totally valid. – ItzWarty Feb 24 '10 at 7:00
show 1 more comment
feedback

5 Answers

up vote 1 down vote accepted

onclick and window.open

<input type="button" onclick="window.open('http://www.example.com','_blank','resizable=yes')" />
link|improve this answer
feedback

You could do something like this:

window.open(url, "window-name", "menubar=no,innerWidth=600,innerHeight=600,toolbar=no,location=no,screenX=400,screenY=40");

Passing a name to the open method causes the browser to open a new window. The third argument defines the looks of the new window.

link|improve this answer
feedback
In Head:  
<script>
openNewWindow = function()
{
 window.open(url, "_blank");
};
</script>
In Body:    
<input type="button" onclick="openNewWindow()" >

I prefer to define a function named openNewWindow() instead of putting the code in the input tag. This is for organization. I highly recommend you do this if you're planning on having many different buttons for opening different windows.

link|improve this answer
feedback

I think this is the best solution for you.

Try this out

<a href="http://www.stackoverlfow.com" target="_"><input type="button" value="Click Me"/></a>

Happy Coding!!

link|improve this answer
feedback
<input type="button" value="Google"
       onclick="window.open('http://www.google.com', '_blank');" />
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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