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
basic question about eigenvalues
Select Input Radio Button on page load from javascript or code behind
When setting a Static IP address
timer on form in vb.net
SBS2003 - Deploying Printer Via GPO
System.Threading.Timer problem.
Thursday's date in the present week
Enable settings which are locked down by Group Policy
How to automate a task for Excel
How do I stop a PlaySound call that continues output outside the logic of the program that called it?