I have created a button on Dreamweaver,
Using Dreamweaver, How can I make button take the user to another page on click?
This is the link for the button:
<input type="submit" value="Submit">
I have created a button on Dreamweaver,
Using Dreamweaver, How can I make button take the user to another page on click?
This is the link for the button:
<input type="submit" value="Submit">
You can use one of the following:
<input type="button" value="Submit" onclick="javascript:window.location.assign("http://google.com");">
A more modern equivalent is:
<button onclick="javascript:window.location.assign("http://google.com");">
Submit
</button>
Hope this helps!