When jumping to anchors on a JSP, HTML anchors do not work. Eg, something like
<a href="#name">Link</a>
...
<div id="name"></div>
fails because the server actually looks for a file named "filename.jps#name" and returns an error. Is there any workaround for this?