Html expression question

this isn’t a multiline html expresion…

We want an expression which contains multiline html, so we can change soms text with tagvariables

'<html>'+{path/to/tag}+'<br>'+{path/to/another/tag}
2 Likes

This is not working in an expression, does javascript need a specified structure which is not available in an expression?

Javascript? Are trying to execute javascript within the html? String properties won't do that. Whatever substitutions you wish to perform must be done before the string is assigned to the property. Either as expressions, or via some form of scripting.

yes, we are trying to use a google maps api with javascript to set markers on it and let it move based on tag values. So when the tag values changes, the markers position also have to change whitout refreshing the whole page.

Perhaps this will help.