Files
JavaScript-from-Beginner-to…/Chapter 10/Code Samples/ch10-formsubmit.html
T
2021-11-25 14:40:42 +01:00

9 lines
219 B
HTML
Executable File

<html>
<body>
<form action="anotherpage.html" method="get" onsubmit="doStuff()">
<input type="text" placeholder="name" name="name" />
<input type="submit" value="send" />
</form>
</body>
</html>