As part of a question, I would like the respondent to click on a hyperlink that opens a website IN A SECOND WINDOW for them to review. Then, they will come back to the still open survey window and finish the survey. I know how to add the hyperlink but not how to do it so that it opens a separate window that doesn't just replace the survey window.
Page 1 / 1
hi @S_Bowen0425 ,
Use Hyperlink attribute called target.
example:
`<a href="www.google.com" target="_blank"> see</a>`
Reference page:
https://www.w3schools.com/tags/att_a_target.asp
Use Hyperlink attribute called target.
example:
`<a href="www.google.com" target="_blank"> see</a>`
Reference page:
https://www.w3schools.com/tags/att_a_target.asp
Hello @S_Bowen0425 ;
Add target="_blank" attribute to your a(anchor) tag.
Eg: `<a href="Your website link" target="_blank">Description</a>`
Add target="_blank" attribute to your a(anchor) tag.
Eg: `<a href="Your website link" target="_blank">Description</a>`
More great answers! Thank you very much.
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.