I always wondered how to instantly navigate through pages using # or #! in URLs. Many websites like Google are using it on http://www.google.com/nexus/ , when user click any of the links, nothing changes and things open instantly, only URL changes, for ex: www.example.com/#contact or www.example.com/#home

How can I do this with 8 of my pages? (Home, Features, Rates, Contact, Support)

link|improve this question
@JaidevSridhar check the tag description for hashbang. "URL convention for AJAX-based web applications with web crawler support." Reverting, as that's the term used. – yahelc Aug 29 '11 at 21:45
feedback

2 Answers

You may want to take a look at a basic AJAX tutorial (such as http://marc.info/?l=php-general&m=112198633625636&w=2). The real reason the URLS use #! is to have them get indexed by google. If you want you AJAX'ed URLs to be indexed by Google, you'll have to implement support for _escaped_fragment_ (see: http://code.google.com/web/ajaxcrawling/docs/specification.html).

link|improve this answer
feedback

The only reason this is used, is to show the state of an AJAX enhanced page in the url. This way, you can copy and bookmark the url to come back to the same state.

Older browsers don't allow you to change the url in the address bar without the page being reloaded. The latest browsers do (search for PushState). To work around this, you can change the hash of the url. This is the part that is normally used to jump to an anchor, but you can use it for other purposes using JavaScript.

The ! isn't strictly necessary for this process. The ! is implemented by Google. It allows these urls to be indexed. Normally hashes aren't indexed separately, because they mark only a different part of the same page (anchor). But by adding the !, you create a shebang or hashbang, which is indexed by Google.

Without explaining everything here, you should find a lot of information when you search for Ajax, HashBang and PushState.

Addition: Check History.js. It is a wrapper for the PushState api, that falls back to using hashes on older browsers.

link|improve this answer
This PushState feature sounds interesting... +1 :) – Šime Vidas Aug 29 '11 at 21:32
It is pretty cool, but note that is only works in the very latest browsers (I think FF5+, Chrome 11, not sure about IE9). – GolezTrol Aug 29 '11 at 21:35
Made an addition about History.js which makes implementation more easy for you. github.com/balupton/History.js – GolezTrol Aug 29 '11 at 21:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.