User talk:SteveBaker

From Wikiid
Revision as of 20:38, 20 November 2007 by WikiSysop (Talk | contribs)

Jump to: navigation, search

<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" onClick="alert('You will now go to the next page')"> 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>

HELLO!