Hi,
I'm new to Struts2 but have been struggling with a problem for 2 days now.
Basically, I want to set up an <s:param>
tag within an <s:url>
with the content of a div tag somewhere else in the page.
<div id="div1">My value</div>
<s:url action="myAction" var="url">
<s:param name="param1">...content of div1...</s:param>
</s:url>
When I tried to embed some javascript call within <s:param>
tags, javascript calls are not evaluated.
My question is : Is there a way to bind a javascript call to an <s:param>
tag whenever it is evaluated ?
Thanks a lot