Difference between revisions of "User talk:SteveBaker"
From Wikiid
SteveBaker (Talk | contribs) |
|||
Line 1: | Line 1: | ||
− | <SCRIPT LANGUAGE="JavaScript">function convertIt() { var centy=0; | + | <SCRIPT LANGUAGE="JavaScript">function convertIt() { var centy=0; centy=document.Converter.centigrade.value; document.Converter.faren.value=centy*9/5+32;}</SCRIPT> |
is called when the user moves out of the centigrade input box (onBlur): | is called when the user moves out of the centigrade input box (onBlur): |
Revision as of 17:21, 23 November 2007
<SCRIPT LANGUAGE="JavaScript">function convertIt() { var centy=0; centy=document.Converter.centigrade.value; document.Converter.faren.value=centy*9/5+32;}</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 onblur="convertIt()">
Press "tab" to see the Farenheit Temperature:
<input type=text name="faren" size=10> </form>