Forum Moderators: coopster
I think this is a really awesome technique, and I'm not sure how it is accomplished. Is it PHP? Is it CSS? I know it can be done with technologies such as AJAX, but this page is much too clean and simple for that.
Any thoughts on how this valuable, user-friendly technique is implemented?
When the page template is identical, the browser does a faster job of redrawing subsequent pages.
AJAX *cannot* alter the page's source code. It can alter the rendered code on the page, but "View Source" always remains the same.
Now, all that said, *is* there a way to keep parts of the page "frozen" without using frames?
Thanks for having a look!
Now, all that said, *is* there a way to keep parts of the page "frozen" without using frames?
Short answer, not yet.
Long answer, people have done it. It looks like some AJAX pioneers have deciding that they will use the hash (#) portion of a URL to designate the different "pages" of their AJAX applications. Then to get those URL's in the browser they have hidden iframes that get refreshed to populate the browser history and push the new URL into the main page. So, yeah, there is a way, but I would not call it ready for primetime.