i have a jsp code like the following(let it be hai.jsp). I need to display at li location a value(1 0r 2) based on certain conditions from js
<div id="abcd">
<ul>
<c:choose>
// some code
<c:otherwise>
<c:choose>
<c:when >
<li class="aaa"><a id="efgh" class=""></a></li>
</c:when>
<c:otherwise>
</c:otherwise>
</c:choose>
</c:otherwise>
</c:choose>
</ul>
</div>
the following is sample js(hai123.js)
function paintSubnavLayer(DealsJSON){
if((a>b){
\\code to pass value 1 to the jsp
}
else{
\\code to pass value 2 to the jsp
}
can some one help me know how to pass the value. help me with changes in js and jsp please as i am a fresher