Copy link to clipboard
Copied
I'am using dynamic data from DB, but notice that unable to add hyperlink for my URL...
<cfoutput query = "GetMapsData">
<cfmapitem
address="#Latitude_ID#, #Longitude_ID#"
markericon="markers/#category#.png"
markerwindowcontent="#Map_Title# <br/> #Description# <br/> #URL# <br/><br/>">
</cfoutput>
I try this..
<cfoutput query = "GetMapsData">
<cfmapitem
address="#Latitude_ID#, #Longitude_ID#"
markericon="markers/#category#.png"
markerwindowcontent="#Map_Title# <br/> #Description# <br/> <a href="#URL#">#URL#</a> <br/><br/>">
</cfoutput>
Is error..
Anybody can help?
Copy link to clipboard
Copied
finally i found the script..
<a href="#URL#">#URL#</a> <a href='#URL#'>#URL#</a>
Only change the " to '