Toggle navigation
Genres
Frontend (2)
JavaScript (6)
Database (2)
Linux Server (3)
Web Apps (4)
Misc (4)
Search
List
New Tutorials
Last Modified Tutorials
</>
Code examples
code
smiko
frontend
html
examples
forms
22button_js3.html
22button_js3.html
<!DOCTYPE HTML> <html lang="hr"> <head> <meta charset="UTF-8"> <title>Submit, reset and button types</title> <script language="JavaScript" type="text/javascript"> <!-- function fja(x){ var firstname=window.document.obrazac.dugme.value; alert(firstname +'\n'+ x); } --> </script> </head> <body> <form action="" name="obrazac"> <button type="submit" name="dugme" value="John" onclick="fja('you klik on me')">Click here Johnny</button> </form> </body> </html>
Reload page
Preview
W3C validation
Edit Code