Advertisement
Guest User

Fixing code for stackoverflow

a guest
Oct 20th, 2011
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.83 KB | None | 0 0
  1.     <h1>BMI Calculator</h1>
  2.  
  3.     <!-- Form with button -->
  4.     <form action="">
  5.    
  6.    
  7.    
  8.    
  9.         <p><input type="button"
  10.        
  11.         onclick="calc_bmi()"
  12.        
  13.         value="Calculate BMI" />
  14.        
  15.         <script type="text/javascript">
  16.        
  17. function calc_bmi()
  18. {
  19.        
  20. var weight=(+prompt("Enter weight in pounds: ",""));
  21. var height=(+prompt("Enter height in inches: ",""));  
  22. var BMI=((weight * 703)/(height * height));  
  23.  
  24. write_result(height,weight,BMI.toFixed(2));
  25. }  
  26.  
  27.  
  28. </script>
  29.        
  30.         <script type="text/javascript">
  31.        
  32.     function write_result(height,weight,bmi)
  33. {
  34.     var container = document.getElementById("results");
  35.     var results = "<p>Height:  " + height + " inches.</p>";
  36.     results += "<p>Weight: " + weight + " pounds.</p>";
  37.     results += "<p>Your BMI is " + bmi + " .</p>";
  38.     container.innerHTML = results;
  39. }
  40.    
  41.     </script>
  42.     </form>
  43.  
  44. </body>
  45. </html>
  46.  
  47.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement