You are viewing limited content. For full access, please sign in.

Question

Question

auto populate email for saved form to continue later?

asked on September 30, 2014

Is it possible to have the field auto populate with the submitter's email? since this field only shows up when the check box is checked. Thanks!

 

0 0

Answer

SELECTED ANSWER
replied on September 30, 2014

in previous versions, you can add a hidden field and use it to have a default value of the users email address. Set that field to have the class, EmailField

 

From there, you can use the following to copy the value and store it into the field for the email:

$(document).ready(function () {
   var userEmail = $('.EmailField input').val();
   $('input.saveresumeinfo:nth-child(2)').val( userEmail ); // Set the email address
}

 

 

1 0

Replies

replied on September 30, 2014 Show version history

What version of Forms are you using? In Forms 9.2 there is now a Save Draft button that will show for logged in users and will save it to a Draft area of the system for them.

2 0
replied on September 30, 2014

thanks for the suggestions guys.

 

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.