OK, one of my favorite navigational schemes is the breadcrumbs list. I like it’s ease of use in developing and presenting to the user, and I like the quick visual that it gives a user as to the hierarchical structure of the site. One great little script that I ran across is called Cookie Crumbs. Here is the script in a nutshell:
- This script keeps track of where a user has been via cookies read and written in JavaScript
- It is a true list of your trail history (much like the browser’s history, but you can see it visually)
Most breadcrumbs scripts list the site hierarchy, not the true user history - Easily configurable - the list is written to the screen through JavaScript and formatted with CSS
- Unobtrusive, if a user doesn’t have JavaScript enabled, they’ll not see the list at all
Take a look at the script here: http://www.tomcoote.co.uk/JavaScriptCookieCrumbs.aspx


(2 votes, average: 4.5 out of 5)