Allo,
EDIT:
1- OPEN FIREBUG, on the console tab
2- OPEN YOUR GMAIL ACCOUNT,
3- when gmail is loaded, click on one of your label (at the left under the draft box)
4- WITH FIREBUG YOU SEE THAT THE PAGE DOES NOT COMLETLY RELAOD SINCE ALL PREVIOUS ACTION STILL THERE FOR THE CURRENT DOCUMENT, BUT THE BROWSER COMPLETLY ACT LIKE THE PAGE HAVE BEEN RELOADED, stop button browser own loading effect, etc...)
5- !!!!! this is it..!!!!
Does some on have a clue on how site like Gmail can make the browser load on ajax call ( I mean show the loading icon and all, history, etc)
I already know what to check for the hisroty navigation but how in the world they can make the browser to act like this was a simple link that load a complete new page.
facebook seems to do similar thing
from what I see with things like firebug Gmail basicly reteive mail information in JSON and than use some javacript to render it to the user. But how they make the browser load in the while.
EDIT:
In gmail once it is loaded, abviously they ain't load all the data, from all your folder in background, so when you click on some of your folder and the data is not already loaded they make the browser 'load' like if it were loading a complete new page, while they retreive the information from their server with some ajax call ( in Firefox you see the browser act like when you click on a normal link, loading icon, stop (x) button activated, and all). Is it clear,? I dont think Wikipedia will be much help
EDIT:
Any idea, someone! I came up with some 'ugly' code to achieve my goal that work quite nice in FireFox and IE (sadly it seems to not work in Chrome/WebKit and Opera(who use Opera ;-) ). I tell the browser to go to a url that it will not be able to reach before the ajax call end, with window.location=. The browser start to load and than when the ajax call sucess I call window.stop() (window.document.execCommand('Stop') for IE) than innerHTML the ajax data in the document To me its look ugly and since it not work properly in Chrome/Webkit, this is apperantly not the way to go. Any idea, someone!
EDIT: Someone!!??