Edit The Code:
See Result »
Try it Yourself - ©
w3ii.com
<
!DOCTYPE
html
>
<
html
>
<
body
>
<
p
>
Click the button to open a new browser window.
<
/p
>
<
button
onclick
="myFunction()"
>
Try it
<
/button
>
<
script
>
function
myFunction() {
window.open(
"http://www.w3ii.com"
);
}
<
/script
>
<
/body
>
<
/html
>
<!DOCTYPE html> <html> <body> <p>Click the button to open a new browser window.</p> <button onclick="myFunction()">Try it</button> <script> function myFunction() { window.open("http://www.w3ii.com"); } </script> </body> </html>