I am trying to call a JS function from within Struts:
<s:iterator value="%{foo}" status="stat">
<a id="idname" href="#" onClick="javascript:getValue('<s:property value="news"/>'); return false;"><s:property value="newsName" /></a>
</s:iterator>
When I do so I get an unterminated string constant error. However when I use the escaped values that I have for:
When I use the literal value of the "news" variable:
<s:iterator value="%{foo}" status="stat">
<a id="idname" href="#" onClick="javascript:getValue('http://www.cnn.com/2013/01/10/travel/flight-movie-united-232/index.html?iref=obnetwork');return false;">
<s:property value="newsName" /></a>
</s:iterator>
No such error is thrown.
The value of:
<s:property value="news"/>
is the string:
http://www.cnn.com/2013/01/10/travel/flight-movie-united-232/index.html?iref=obnetwork
I have checked this by outputting it to the page.
And, no, I don't have to escape the property itself; this works:
<a id="idname" href="#" onClick="javascript:getValue('http://www.blah.com/<s:property value="otherValue"/>');return false;"><s:property value="userName" /></a>