HarryVincent
Programmer
I've built a form that gets to a certain point and allows the user to click links in order to return to previous pages and alter info if need be. I'm using history.back() to send them to the previous page, but I'd like for to further control where they end up on the previous page. I have defined anchor tags but I'm not sure how to call them properly.
My current code looks like this:
<a href="javascript:history.back()">
I'm thinking I need something along these lines (but this doesn't work):
<a name="#info" href="javascript:history.back()">
My current code looks like this:
<a href="javascript:history.back()">
I'm thinking I need something along these lines (but this doesn't work):
<a name="#info" href="javascript:history.back()">