+ 1
How to create button ?
how to create button and after button click go to next page
5 odpowiedzi
+ 1
First, you need the address (with absolute or relative path) of your "next page", since the browser does not know, where you want to go.
Then simply create an HTML button like this:
<input type="button" value="next page" onclick="window.location.href='nextPage.html'">
0
If you also want a button that will work without javascript, get an image for the next button and add this:
<noscript><a href=“nextPage.html”><img src=“next.jpg”></a></noscript>
The noscript tags make it so if javascript is enabled, that won’t even show.
0
example code plase
0
Hj