Hi @tcsweb Happy Monday! I hope you had a great weekend. I’m afraid we don’t offer this feature in our forms or redirect, but I can share this feedback to the product team.
@mathio can definitely help answer these for you and (I think) advise which one would be best!
Hello @tcsweb
> I wish to redirect the users to question 5 of the quiz at the end screen.
It is not possible to redirect users to specific question of your typeform. However you might be able to use logic to display the question you want as users answer the questions in your form.
> How can I make the quiz load within the frame (the form is embeded) without loading and moving away from my page.
Maybe you could user the redirectTarget
option from embed SDK to redirect in the same iframe (eg. data-tf-redirect-target=”_self”
).
> OR i can direct users to a new tab/page at the endscreen. But how can I have the link on button of the endscreen open as new tab?
You can use the redirectTarget option: data-tf-redirect-target=”_blank”
(see docs for limitations in some browsers when opening in new tab).
Alternatively you could use the onEndingButtonClick callback to implement the redirect logic in JavaScript yourself.
Do you mean like this?
<div data-tf-live="xxxxxxxxxxxxxxxxxxxxxxx" data-tf-redirect-target="_blank"></div>
<script src="//embed.typeform.com/next/embed.js"></script>
Unfortunately the live embed does not support additional attributes (yet). You will need to build your embed code manually like this:
<div data-tf-widget="<FORM_ID>" data-tf-redirect-target="_blank" style="..."></div>
<script src="//embed.typeform.com/next/embed.js"></script>
If you have any other embed customization or other settings, you need to add them as attributes to the div tag. If you help building your embed code you can see Embed SDK README or ask here in the community.
Sorry for the inconvenience. We plan to add support for additional options to live embed soon.