Home > Support > Knowledge Base Home > Customers > Subscribers > Add / Remove > Web Forms
Search the Knowledge Base:
Browse by Category
How Do I Display Subscribers' Names or Email Addresses On My Thank You Page?
You can display subscribers' information on your thank you page after they fill out your form and the page they see after confirming their subscription. Here's how to do it:
- Follow the instructions to pass form data to your thank you and/or confirmation success pages.
- Add some JavaScript to your thank you or confirmation success page so that you can display subscribers' names or other information where you want on your page.
Enter the JavaScript located in the textbox below to your website in the <head> section of the web page:
- Wherever on the page you want to display your subscriber's information, open your web page's HTML and enter:
<script type="text/javascript">formData.display("name")</script> - to display their name
<script type="text/javascript">formData.display("email")</script> - to display their email
<script type="text/javascript">formData.display("custom_fieldname")</script> - to display a custom field.
For example, the custom field "phone" would be displayed using:
<script type="text/javascript">formData.display("custom_phone")</script> -
If you are using our split name field in your web form, you can choose to display the first or last names using:
<script type="text/javascript">formData.display("name (awf_first)")</script> - to display their first name
<script type="text/javascript">formData.display("name (awf_last)")</script> - to display their last name
Still Have Questions?
If after reading this article you still have questions, contact us for a personal response from our Customer Solutions team.Related Articles
- How Do I Add a Form To My Website?
- How Do I Pass Form Data to My Thank You Pages?
- What Is A Thank You Page?
- How Do I Send Subscribers to My Website After Confirming?