Re: Passing a variable to two fields
Why would you want to pass the same value twice on purpose?
To answer your question. Yes it's possible, copy value from one element to another with javascript.
document.getElementByID("element1").value=document .getElementByID("element2").value
make sure your elements have an ID.
|