How can i make pages load like rapidshare without reloading window?
for example:
if you browse through pages, browser window is not reloading, it just change last parameter of url like #!myrs_overview, #!buyrapids, #!help etc
when i see it in firebug it is giving that parameter name, i.e from above (home,buyrapids)
http://screensnapr.com/v/wPJtCY.png
Thanks
#!is called a hashbang, and it’s the standard for allowing Google to crawl ajax pages. They’re simply using AJAX to repopulate the page information and then updating the hash url:Take the following example navigation link:
If we don’t want the page to redirect to
contact.phpbut we want to load the content, we could do this instead:Then with JQuery:
If someone enters your site with the hashbang in the url, we simply detect it and load the appropriate page; something like this would work: