Is it possible to run javascript functions inside jsp tags? I'd like to run a sudden function as many times as there's objects in my ArrayList. Below doesen't work, but I hope it gives an idea of what I'm trying to achieve.
<script>
function test(){
alert();
}
</scripts>
<%
ArrayList<Marker> list = new ArrayList<Marker>();
list = (ArrayList<Marker>)request.getAttribute("markers");
for(int i = 0; i < list.size(); i++){
%>
<script>
<%
test();
%>
</script>
<%
}
%>
Is it possible to do it with something like ?
<c:forEach var="name" items="${markers}">
<%-- call my javascript function --%>
</c:forEach>
test('<%= list.get(i).name %>')