Creating dinamics tabs (JQUERY + JSTL)
hi all ! Im new here...
Im following the tabs creation from the JQUERY examples and Im having problems with creating dinamics tabs:
My code so far is:
- <div id="tabs">
<c:forEach var="Agenda" items="${sessionScope.Agenda}">
<ul>
<li><a href="${Agenda}"><span>${Agenda}</span></a></li> <!-- make the ref -->
</ul>
- <div id="${Agenda}"> <!-- where the ref is pointing to... -->
- CODE FOR THE TABS HERE !
- </div>
- </c:forEach>
- </div>
Any help is appreciated.
Thanks in advance!