Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2014
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.50 KB | None | 0 0
  1. <html>
  2.     <head>
  3.         <title>
  4.             Morgen
  5.         </title>
  6.         <script language = "javaScript">
  7.             function hallo(TF1){
  8.                 text1 = TF1.value;
  9.                 var zahl = parseInt(text1);
  10.                     if(zahl<0){
  11.                         zahl = -zahl;
  12.                     }else{
  13.                         zahl = zahl*2;
  14.                 }
  15.                     TF1.value = zahl;
  16.             }
  17.         </script>
  18.     </head>
  19.     <body>
  20.         <form name ="hi">
  21.             <input type ="text" name ="text1" value ="hallo">
  22.             <input type ="button" name ="Button1" value="Press"
  23.                     onclick = "hallo(this.form.text1);">
  24.         </form>
  25.     </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement