Seeding Survey Data
If you’re embedding a survey on your website then you may already have information about your viewer, such as their name and email address. Rather than ask for this again you can now seed a survey with data so that fields are pre-filled.
Seeding a survey is very simple – just pass the data along as URL parameters:
http://polldaddy.com/s/D1C633832CB816C1?q_1_email=test@address.com&q_2_url=example.com
You can also seed a survey with the JavaScript embeds:
<script type="text/javascript"> polldaddy.add( { type: 'slider', title: 'Take Our Survey!', body: 'Please help us find out what you think by taking our survey at Polldaddy.com.', button: 'Get Started »', pid: 'D1C633832CB816C1', seed: { q_1_email: 'test@example.com', q_2_url: 'example.com' } } );
Want to hide the data being passed? Base64 encode it!
http://polldaddy.com/s/D1C633832CB816C1?sv=cV8xX2VtYWlsPXRlc3RAYWRkcmVzcy5jb20mcV8yX3VybD1leGFtcGxlLmNvbQ
Seeding a survey allows you to reduce the amount of information people need to enter, which in turn will increase the likelihood that someone will complete your survey. When used in conjunction with custom survey tags it is a powerful way for you to get data in and out of a survey.
You can find full documentation about this (and the URL parameters) on the survey seeding support page, as well as details about custom survey tags.