Here is my jsp code
<%
String amount = properties.get("./amount","");
String amount1 = properties.get("./amount1","");
for(i=0;i<7;i++){
%>
<div class="className-<%=i%>">
<div class= first<%i%>>
<%=amount%>
</div>
<div class= second<%i%>>
<%=amount1%>
</div>
</div>
<%}
%>
How can i get the value of amount and amount1 in jquery ?