I've seen several sites do this i.e. Facebook's chat window, or Reverbnations music player, I was wondering if anybody can point me to any tutorials on how it can be achieved?
Cheers.
|
I've seen several sites do this i.e. Facebook's chat window, or Reverbnations music player, I was wondering if anybody can point me to any tutorials on how it can be achieved? Cheers. |
|||||||||||
|
|
The answer to why the chat windows don't get cleared on navigation: there's no page refresh when you surf around Facebook. Most of the time Javascript is used to change the displayed contents. When you programmatically swap out your content to give the impression of browsing, the browser doesn't actually navigate to a new location anymore. The address bar doesn't change and the back button won't redo any of your steps. That's when the HTML5 history API kicks in. It allows to manually manage history items, so that when you surf to a different page within Facebook, a new history item gets created. This tells the browser to enable the back button, and clicking the back button will fire an event that you'll need to handle. Also, the History API will allow you to change the browser's address bar (ideally to something that takes you to the exactly same content if you actually request that URL). Although current browser support looks pretty good, you can include fallbacks using location hash. |
|||
|
|
|
Facebook's JavaScript is so vast and obscure I don't think anyone will find anything in there on how they do things. Your only chance would be if a Facebook dev would answer this question. You can always check for features using JavaScript and provide fallbacks (such as location.hash or plain old full page refreshes). Modernizr is a framework that makes feature detection easy. That said, there are frameworks that provide an easy way to use the History API. One of them, and arguably the most prominent, is History.js, which provides cross-browser functionality with proper fallbacks for browser that don't support the History API. There's also a plugin for History.js and jQuery that lets you 'ajaxify' your site. Checking for History API support:
Using Modernizr:
|
||||
|
|