Forum Moderators: open
Like:
<form name="form1">
<input type="text" name="field1" onBlur="form2(field1)" />
In the head:
function form2(thefield){
if(thefield == field1){
document.form2.field1.write(document.form1.field1.value)
}
}
Something like that, my JS skills are rusty.