I want a specific survey to appear only for a certain subset of webpages. Example: If a person searches for specific resource page, I only want the resource survey to appear on the resource page. If the page contains */resource/* in the URL. How can this be done?
Page 1 / 1
Hi
Hello
you will need to implement this on your own. For example you can use a piece of JavaScript along with the Typeform Embed SDK.
For example if you want to show a popover embed you could use this JavaScript code in your page:
if (window.location.pathname.match('/resource/')) {
window.tf.createPopover('<form-id>')
}
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.