HTML with JS :I need help fast please...help to open window
Ok, Im making a web page. First i have the page set up so I can click two buttons. Each button I want to open a seperate page ive designed. Im using TomCat. How do I set the buttons up so they open the page i want. For example. My welcome page has a button to click to bring user to another page to read. Im not sure on how about doing so please help its urgent. Thank you very much
Re: HTML with JS :I need help fast please...help to open window
You could use window.open() to open a new window, or location.href.
window.open()
Re: HTML with JS :I need help fast please...help to open window
target="_blank"
e.g.
HTML Code:
<a href="http://www.microsoft.com" target="_blank">Link</A>