Let's say I had the form
<script language="javascript">
<!--
function check_this() {
fname = document.form1.fname.value
document.getElementById('my_div').innerHTML = fname;
}
-->
</script>
<form name="form1">
<input type="text" name="fname" onBlur="check_this()" />
</form>
<div id="my_div">
Results Here
</div>
I'll check it and see if it works.
I know this a php forum but I don't want to go to another forum and ask a question unless I proved I'll study it.
Edit:
It works!!!!!
Here's an example http://ecards.zeeblo.com/test3.php
After you type something in click outside the text box.