Apr 12th, 2013, 7:05 PM
For a text area field, try:
Or for a simple text field, try:
This will pre fill the name field with "Robert".
Check out:
http://www.w3schools.com/tags/att_input_value.asp
Hope this helps!!
Alex
Code:
<textarea>
Here is the data you want to show in your textarea
</textarea>
Or for a simple text field, try:
Code:
<input type="text" name="first_name" value="Robert">
Check out:
http://www.w3schools.com/tags/att_input_value.asp
Hope this helps!!
Alex
(Apr 12th, 2013, 9:31 AM)dondiegovega Wrote: Hi.
Thanks for formtoools. It's great.
How do I set a field to be pre filled? That is, when a user gets to that field, it is already populated, but they can change it if need be.
In that field, a large majority of the entries will be the same. A few won't.
Thanks.