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
outlook 2010 randomly deleting sent items
Windows Server 2008 R2 logon problem
Gap between the lines in a table - ASP.Net
How can I clean all inputs?
Crystal Reports Record Selection Formula Based on Two Date Fields
SQL Query syntax
Cisco 3750 switch not communicating with new HP procurve 2510g
An E-mail from "Nobody"
Excel 2010 sharing workbooks
populate textarea and file input from a dropdown -- Ajax and jQuery