Re: Passing dynamic parameters to javascript function inside href link

2007-09-10 Thread Yannick Haudry
you probably have to include the whole expression within your expression element, for instance: '>value should work, but a bit ugly ;-) maybe it looks nicer using jstl ! var Hope it helps Yannick On 9/10/07, Anna Simbirtsev <[EMAIL PROTECTED]> wrote: > Hello > > I am trying to pass the val

Passing dynamic parameters to javascript function inside href link

2007-09-10 Thread Anna Simbirtsev
Hello I am trying to pass the value of i to a javascript but I can't seem to get it to pass the value. <% for (int i = 0;i < 5; i++) { %> value <%}%> What am I doing wrong? Thank you