Advertisement
Guest User

Untitled

a guest
Dec 9th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="nl">
  3. <head>
  4.  
  5. <meta http-equiv="Content-type"
  6. content="text/html; charset=UTF-8">
  7. <title>labopdracht 10</title>
  8.  
  9. <script language="JavaScript">
  10.  
  11. function euroConverter(){
  12. document.converter.dollar.value = document.converter.euro.value * 1.36
  13. document.converter.ruble.value = document.converter.euro.value * 48.40
  14. }
  15. function dollarConverter(){
  16. document.converter.euro.value = document.converter.dollar.value * 0.74
  17. document.converter.ruble.value = document.converter.dollar.value * 64.28
  18. }
  19. function rubleConverter(){
  20. document.converter.dollar.value = document.converter.ruble.value * 0.0072
  21. document.converter.euro.value = document.converter.ruble.value * 0.02
  22. }
  23.  
  24. </script>
  25.  
  26. </head>
  27. <body>
  28. <form name="converter">
  29. <table border="0">
  30. <tr>
  31. <td>Euro: </td><td><input type="text" name="euro" onChange="euroConverter()" /></td>
  32. </tr>
  33. <tr>
  34. <td>Dollar: </td><td><input type="text" name="dollar" onChange="dollarConverter()" /></td>
  35. </tr>
  36. <tr>
  37. <td>Roebel: </td><td><input type="text" name="ruble" onChange="rubleConverter()" /></td>
  38. </tr>
  39. <tr>
  40. <td colspan="2" align="center"><input type="button" value="Convert!" /></td>
  41. </tr>
  42. </table>
  43. </form>
  44. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement