Advertisement
Guest User

roman

a guest
Dec 10th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <html>
  2. <script>
  3. var x = function () {
  4. alert("email odoslany");
  5. }
  6.  
  7. </script>
  8. <body>
  9.  
  10. <div>
  11. <select>
  12. <option value="izba1">Standard izba</option>
  13. <option value="izba2">Sportova izba</option>
  14. <option value="izba3">Deluxe izba</option>
  15. <option value="izba4">Prezidentska izba</option>
  16. </select>
  17. <label>Pocet dni:</label>
  18. <input type="text" />
  19. </div>
  20. <br/>
  21. <br/>
  22. <br/>
  23. <div>
  24. <label>Poznamka</label>
  25. <textarea>
  26. </textarea>
  27. </div>
  28. <div>
  29. <button type="submit" onClick=(x())>Odoslat</button>
  30. </div>
  31.  
  32.  
  33. </body>
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement