Select to view content in your preferred language

Survey123 WebForm HREF HTML URL issue

283
2
Jump to solution
01-08-2024 08:31 AM
ahargreaves_FW
Regular Contributor

Hello,

I have a note field in my survey containing the below:

<p style="text-align:center;font-family:Roboto">To learn more about Fairfax Water’s Lead Free Fairfax Program and how to protect you and your family from sources of lead, visit: </p>
<p style="text-align:center;font-family:Roboto"> <a href="www.fairfaxwater.org/leadfree.com">www.fairfaxwater.org/leadfree.com</a> </p>

 

However, clicking the link constantly takes me to https://survey123.arcgis.com/share/version

 

Any ideas why?

0 Kudos
1 Solution

Accepted Solutions
ZacharySutherby
Esri Regular Contributor

Hello @ahargreaves_FW

The link in the href string should use https:// before the subdomain. For example,

 <a href="https://www.fairfaxwater.org/leadfree.com">www.fairfaxwater.org/leadfree.com</a>

Thank you,
Zach

View solution in original post

2 Replies
ZacharySutherby
Esri Regular Contributor

Hello @ahargreaves_FW

The link in the href string should use https:// before the subdomain. For example,

 <a href="https://www.fairfaxwater.org/leadfree.com">www.fairfaxwater.org/leadfree.com</a>

Thank you,
Zach
ahargreaves_FW
Regular Contributor

Muchos Gracias @ZacharySutherby !

0 Kudos