PDA

View Full Version : "Return to page "Navigation Help


Cheers
Dec-17-2011, 05:15 AM
I would like to have a clickable link to return to the previous page. I know how to direct to a different page, but I if have a reference to a certain page from 2 or 3 different pages, how can I have it return to the page I was on? Similar to hitting the Back button on the browser.

Thanks, I appreciate all the insight and tips from all the talented folks on here!

Lamah
Dec-17-2011, 06:53 AM
You can do this:

<a href="javascript:history.go(-1)">Back</a>

It doesn't play very nicely with middle-clicking links to open them in a new tab, however.

Cheers
Dec-17-2011, 07:32 AM
You can do this:

<a href="javascript:history.go(-1)">Back</a>

It doesn't play very nicely with middle-clicking links to open them in a new tab, however.

Thanks! I'll try this. I'm not worried about tabbing, just jumping back n forth between pages. I knew there was a way to do it. gain, thank you! :bow