I am using Spring4 and JSTL. The image shown below consist of elements that are dynamically created in a JSP page.

code in jsp page
<c:forEach var="themes" items="${Itemlist}"> <div class="col-lg-3 col-xs-6"> <!-- small box --> <div id="style" class="small-box bg-green" > <!--div contents --> </div> </div> </c:forEach> I need to change the div with id="style" class dynamically
small-box bg-red
small-box bg-blue
small-box bg-green
small-box bg-yellow ,all can change the box colour.How can i apply that dynamically.
Please help.
