Forum Moderators: phranque
I'm trying to create an anchor that's referenced by a variable called through JSP.
example:
<a href=#"<%=headerCategory1%>"><%=headerCategory1%></a>
must be the syntax...
Try it this way: <a href="#<%=headerCategory1%>"><%=headerCategory1%></a>
Thanks.