Microsoft
Software
Hardware
Network
Question : Copy what user types in a text filed in to a hidden field
In my page I have a text field <input type="text" name="txt" /> So what I want is, I want to add what user types in this filed in to a hidden field realtime, Would be gr8 if can be done using jquery
Answer : Copy what user types in a text filed in to a hidden field
no need for jQuery
<form>
<input type="hidden" name="htext" value="" />
<input type="text" name="txt" onKeyUp="this.form.htext.v
alue=this.
value" />
</form>
Random Solutions
Exchange Forward
How do I link a record in one sub-form to a record in another sub-form
Broadband Usage
Group by week starting with first day of the month
sql server types T-SQL and CLR parameter "@ note" do not match
how to import with JDeveloper
RDS and VDI on the same server?
Crystal Reports in C# App built on 32 bit Windows throws error on 64 bit Windows
trouble with fusebox
How do I make these graphical links also submit a form?