Conversión de grados Celsius a grados Fahrenheit

ver ejemplo

Para realizar la conversión realizamos el siguiente código:

<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Conversión de grados Celsius a grados Fahrenheit</title>
</head>
<body>
<h1>Conversión de grados Celsius a  grados Fahrenheit</h1>

  <form action="#" method="post">
  <label for="gradoCelsius">GradoCelsius:</label>
 <input type="text" name="gradoCelsius" id="gradoCelsius"> 
 <input type="button" name="enviar" id="enviar" value="calcular" onclick="convertir()" />
 </form>

 
 
 <script type="text/javascript">
 
 function convertir(){
	 var celsius = document.getElementById("gradoCelsius").value;
	 var fahrenheit=((celsius*9)/5)+32;
	 
	 
	 alert(fahrenheit+"F");
 }
 
 
 </script>
 
 
 
</body>
</html>