Difference between revisions of "User talk:SteveBaker"
From Wikiid
Line 1: | Line 1: | ||
+ | <nowiki> | ||
<SCRIPT LANGUAGE="JavaScript"> | <SCRIPT LANGUAGE="JavaScript"> | ||
Line 7: | Line 8: | ||
} | } | ||
</SCRIPT> | </SCRIPT> | ||
− | + | </nowiki> | |
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 19:41, 20 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()"></input>
Press "tab" to see the Farenheit Temperature:
<input type=text name="faren" size=10></input> </form>