Ask a Question related to Macromedia ColdFusion, Design and Development.
-
Shaggy1 #1
Back button / Javascript History
Hi
I have a coldfusion page which allows users to view different colours of
clothes. By clicking on a red square you get an image for the red clothing etc.
The only problem is when the user clicks the browser back button they have to
go through all their previous selections (blue, black, red, so on so
forth....). When they click the back button I want them to return to the
product index page that they originally came from. I know I could use
history() on links etc. But how can I "reprogram" the back button / browser
history to take the user back to the index page, despite the number of "other
pages" visited.
Thanks
Shaggy
Shaggy1 Guest
-
History back button using flash form
I cannot figure out hoe to use the history.back javascript using Coldfusion 7 -
Truncated Back-Button History
Do you mean the browser backbutton? Why would you want all that stuff in the backbutton? If you turn on smart navigation, you can get directly back... -
Javascript back button
A client wanted a simple flash button adding to an html page to use as a 'back' button. I've used the script: //Goto Webpage Behavior... -
history function in a back button
Hey all, I was just wondering if anybody would know if Flash has the ability to put a history function in a "back button" so when you hit the... -
Help - history.back in php?
Hi, Is there anything like javascipts history.back() function in php? So that I could return the visitor to the last page they visited. Thanks,... -
Shaggy1 #2
Re: Back button / Javascript History
Found the answer, replace the current url in history when clicking
<SCRIPT LANGUAGE="JavaScript"><!--
function go(url) {
if (document.images)
location.replace(url);
else
location.href = url;
}
//--></SCRIPT>
<A HREF="javascript:go('http://www.somewhere.com/apage.html')">Got to a
page</A>
Courtesy of [url]www.irt.org/scripts[/url]
Shaggy
Shaggy1 Guest



Reply With Quote

