Is having tags inside a jstl tag considered bad form? So for example I know the following will work but is it considered bad form to have the script tags inside my jstl tags in my jsp ?
<c:choose>
<c:when test="${!empty bean.value}">
<p>Its not empty</p>
</c:when>
<c:otherwise>
**<script>
callJSSomeFunction();
</script>**
</c:otherwise>
</c:choose>