Can you be more specific?
I'm guessing you are speaking in an HTML document?
I'll put something like:
Quote:
var myInput = document.getElementById('some_input_id');
var myDestination = document.getElementById('destination_id');
myDestination.innerHTML = myInput.value;
|
in some event (like "onblur").
Yeah, innerHTML is not best way to do it, but let's keep it simple since i'm not even sure you want to do this in JavaScript