Hi there I am having an issue in JSP where I wish to call a javascript function:
<c:forEach var='item' items='${bookLogs}' varStatus="status">
...
<tr >
<td colspan="9"><a href="javascript:expandOrCollapse(${sectionNumber}, ${item.type.name});">
</tr>
...
</c:forEach>
Currently I firebug gives me an error: Returned is not defined. javascript:expandOrCollapse(1,%20Returned);()
How do I pass in just the textual value of item.type.name ???
"${item.blabla}".