Hello, I am looking for a JavaScript that turns a traditional site full ajax website. This kind of script changes the links (usually adds a # in front of each link) and loads pages via JavaScript. I've already found two (http://fullajax.ru/ and http://www.bydust.com/examples/com.bydust.ajax/), but it does not work well and does not load urls rewritten. Thank you.
The whole point of AJAX is that you don't load another page, you change the current page without reloading. All you need is a little code to create an XmlHttpObject, then send the data to the server and display the results when they come back. If you want to make it completely trivial, use jQuery's ajax() function.