User talk:SteveBaker

From Wikiid
Revision as of 18:29, 23 November 2007 by SteveBaker (Talk | contribs)

Jump to: navigation, search

<SCRIPT LANGUAGE="JavaScript">function convertCtoF() { var centy=0; centy=document.Converter.centigrade.value; document.Converter.faren.value=centy*9/5+32;} function convertFtoC() { var centy=0; centy=document.Converter.faren.value; document.Converter.centigrade.value=(centy-32)*5/9;}</SCRIPT>

is called when the user moves out of the centigrade input box (onBlur):

<form name="Converter"> Enter the Centigrade temperature: <input type=text name="centigrade" size=10 onchange="convertCtoF()">
View the Farenheit temperature: <input type=text name="faren" size=10>
</form>