What is the best method (cross browser) to utilize an input type button, as a browser back button?
|
feedback
|
|
Are you looking to do something like this?
You could also use
| |||
|
feedback
|
|
"Best" is a little subjective. @Mech Software has an acceptable solution, as it's a simple function call. If you're only making one back button, it's probably the way to go. However, I try to place code where it belongs: HTML belongs in .html, CSS belongs in .css, and JavaScript belongs in .js files. Instead of giving the button an HTML:
or
JS:
I'm assuming the jQuery library, as it's relatively ubiquitous (let me know if you want the non-jQuery version of this). The reason I'd suggest this approach is that it's expandable. If you decide to do something more with your back buttons, or if browsers change (which happens all the time) it's simple to change the functionality in exactly one location, rather than having to hunt down every instance of | |||
|
feedback
|