views:

24

answers:

1

I want to use deep linking on my site using this url method, but I'm not sure how it works. When I set my links to work like this:

<a href="/#/page">stuff</a>

the browser doesn't put it in the window location bar. Ideas?

+1  A: 

This technique is sometimes used for flash and ajax-based navigation to keep back/forward buttons and bookmarks functional. Check this for further reading http://tim.oreilly.com/pub/a/onjava/2005/10/26/ajax-handling-bookmarks-and-back-button.html

Or you could use jQuery and a plugin that does most of the hard stuff for you: http://stackoverflow.com/questions/116446/what-is-the-best-back-button-jquery-plugin

andu