|
<a href="javascript: history.go(-1)">Back</a>
Thankyou. I wish I could make a javascript "Back" title to work with that piece of code so, if the site visitor has javascript disabled, the "Back" link will not even appear.
I am going to use your suggestion in, at least, one instance, but in a number of others I will, unfortunately, make identical pages with "hard coded" back links and so forth. Doing so seems, to me, very inefficient, but I need to get the pages up. Hopefully, I can master a more efficient and less redundant means of accomplishing this soon.
The primary issue is that I have numerous areas of this particular site that are only for a certain audience. I do not want to make it overtly evident to one "audience" how to get to the section set up for another "audience" and I really do not even want one "audience" to be aware of the other.
For instance, I might have a "presentation" for lawyers and a "presentation" for MDs and "another presentation" for health club owners that all use, basically, the same forms EXCEPT I do not want, say, lawyers to complete a form and end up in the "presentation", or site area, intended for health club owners. So I need "back links", etcetera, that will keep my different audiences in their own site sections despite the fact that they might use the same forms. note: One thing that might help is that each "audience" category, has a different username and password. I would not mind just having them type in their password to leave a generic page I send them to after they complete the form. It is probably easy to send them to a certain page based on the password they enter, but I do not know how to do that yet.
I have also gone through great pains to create a very simple site experience for those who use this site. I really feel that I must adhere to that because, I believe, it is VERY easy for a website to confuse web users, especially over fifty seasoned professionals, to the detriment of the website; so I am looking for a solution for this link issue that upholds this reasoning. In fact, it is mostly for this reason that I am using minimal javascript.
Probably the least confusing thing I can do for my web users is probably just make duplicate form pages that have "hard coded" URLs which send each "audience" where I want them to go; I just hate to waste so much time making, essentially, identical pages. And I am not yet knowledgeable enough to use "dynamic" content that may employ a database, etcetera.
Incidentally, ultimately I found a number of scripts that use a lot of code, apparently, just to create a single back link. The explanation given for all the code was usually that it avoids problems associated with using <a href="javascript: history.go(-1)">Back</a>. Here is an example of a script that uses A LOT OF CODE to create a single back link:
httc://www.htmlcodetutorial.com/linking/linking_famsupp_108.html
("The following pages shows you how to implement a simple, flexible back link script without many of the problems inherent in this type of scripting. We'll begin with the basic technique, then move on to ways to customize your back link.")
|