Writing Better jQuery Code JavaScript / General Development
We all know that jQuery is great, that you can do things in 2-3 lines in jQuery that you can in 20 lines of Javascript, but is your jQuery code starting to get a bit bulky? Could you do things better?
Ajax Tabs Content script JavaScript / AJAX
This tab content script uses Ajax to let you display a selection of external content on your page inside a DIV and via CSS tabs! We got our inspiration for this script from Yahoo's new homepage, which employs such a concept to show news in an organized fashion.
Introduction to AJAX JavaScript / AJAX
What is AJAX, what it is not, how it works. What are AJAX frameworks. The XMLHttpRequest object. Short introduction to AJAX with a basic example.
Advanced RSS Ticker (Ajax invocation) JavaScript / AJAX
RSS is a popular format for syndicating and displaying external content on your site, such as the latest headlines from CNN. Well, with this powerful RSS ticker script, you can now easily display any RSS content on your site in a ticker fashion! This script uses a simple PHP based RSS parser called LastRSS for retrieving a RSS feed, then Ajax and DHTML to display the feed dynamically and with flare. As a pre-requisite then, your site itself must support PHP, though the page using this ticker can be any regular HTML file.
Dynamic Ajax Content JavaScript / AJAX
This script uses Ajax to enable you to load external pages into a DIV without having to reload the browser or use IFRAMES. If your external pages reference any external .css or .js files for styling, this script can also load and apply them to the page on demand.
Basic Ajax Routine (get & post) JavaScript / AJAX
Regardless of what you do using Ajax, they all rely on the same basic functions. This is a very small Ajax routine (less than 3 Kb) that enables you to easily use Ajax on your site to send "GET" or "POST" requests asynchronously.
AJAX Tutorial For Beginners JavaScript / AJAX
What is AJAX? AJAX stands for Asynchronous JavaScript and XML. AJAX uses a combination of Javascript and XML to allow web pages to be updated with new data from the server. It consists of HTML, JavaScript, DHTML, and DOM. The traditional way of processing data between client's browser and a server was to submit a HTML form and send data to the server, the server processed the data and sent a response back to the browser.
How To: Learn AJAX in 20 minutes JavaScript / AJAX
Here is a quick overview and example of AJAX in action. Before you begin, this example will only work in FireFox. You'll have to change few things in the JavaScript for it to work in IE.
Ajax Includes Script JavaScript / AJAX
This script uses Ajax (DHTML interacting with the server) to let you dynamically include the contents of an external page onto the current document.