| User | Post |
|
6:08 January 30, 2008
| Gab Goldenberg
Guest
| | | |
|
| |
|
|
Hi,
I was wondering about using a survey to see why people came, whether the achieved what they wanted to, and any suggestions they might have.
I’m thinking of doing this at the end of their visit with something like opening a new page in conjunction with javascript’s onunload. But I’m concerned that the result will be annoying popups, made more annoying by the fact that if I just put it in the template, there’ll be a new popup each time they change pages.
What do you guys think?
Any other solutions?
Cheers
Gab
|
|
|
1:44 January 31, 2008
| Chad
Moderator
| | | |
|
| posts 683 |
|
|
Hi Gab,
We do this in our downgrade survey.
Popups are almost always going to be a bad delivery system. First off, they almost never work (every browser now has popup blockers). Second as you said they are very annoying and will almost always be ignored.
We recommend embedding the survey in your website using a javascript embed or some other method and simply redirecting the person to that survey as they’re leaving.
Some tips, always give the person a clear and easy way out without having to take the survey. No one likes to be a captive audience.
Make the survey very short, our downgrade survey is three multiple choice questions and three short open answer with no required fields.
And finally give them a reason to take the survey. We’re trying to improve our website any suggestions you can give us would really help.
Hope this helps,
Chad
|
|
|
1:38 March 20, 2008
| John
Guest
| | | |
|
| |
|
|
Hi Chad,
Could you please point me in the general direction as to how you’re : “redirecting the person to that survey as they’re leaving.” I.e. is there a specific javascript call you’re using?
Thanks
John
|
|
|
1:43 March 20, 2008
| Chad
Moderator
| | | |
|
| posts 683 |
|
|
Hi John,
We actually don’t use a popup. We just server redirect them to a page and javascript embed our survey into that page.
You can find the javascript embed code in your Publishing page after you launch your survey.
Hope this helps,
Chad
|
|
|
1:56 March 20, 2008
| John
Guest
| | | |
|
| |
|
|
Thanks Chad,
I definitely want to embed the survey - no popups please ! :)
I was just wondering about how you’re actually doing the redirect to the embedded survey / page…sorry my javascript is not good and can’t get more specific than that but if there was a simple method call or URL you could point me to to set me off in the right direction that would be great!
John
|
|
|
2:15 March 20, 2008
| Chad
Moderator
| | | |
|
| posts 683 |
|
|
Hi John,
We actually do a server redirect using php. So something like:
header(’location: http://www.somewhere.com‘);
die();
It would depend on what language you’re using for your server.
Javascript redirects tend to be somewhat unreliable since they run on the client side, but you can use a meta redirect:
<meta http-equiv=”refresh” content=”5;URL=http://www.somewhere.com”>
Hope this helps,
Chad
|
|
|
2:52 May 22, 2008
| yushun
Guest
| | | |
|
| |
|
|
Great article!Thank you!
tiffany necklaces
|
|
|
4:24 May 22, 2008
| inquisichick
Member
| | | |
|
| posts 4 |
|
|
I just came to ask this very question and was pleasantly surprised to see it on the first page.
But I am apparently very slow as I don’t get it at all.
how do you “as someone is leaving…” redirect them? do you mean some kind of onunload…. script?
Thanks
|
|
|
|
|
Hi inquisichick,
Yes, you can use that kind of javascript to pop up the window containing the survey.
There is freely available javascript code all of the web to help you do this. :)
Cheers,
-Christian
|
|