Feather Ajax 1.1
|
Are you wanting to jump on the ajax bandwagon, but you don't want to sacrifice your load time? I've created an easy-to-use ajax library that is less than 1KB. I'll teach you how it works, so you can either use my library, or revise what I've done and create your own.
Read The Full Review.
|
Contributions
 |
FeaturesEdit
- Extremely customizable - the source code is small enough that only a basic understanding of Javascript is necessary to edit the code.
- Cross-browser support - built-in functionality with most mainstream browsers
- Extremely lightweight - the uncommented code is 1KB in size
- Object oriented - Because it's object oriented, it gets around an Ajax bug that is really annoying. If you try to have two Ajax connections going at the same time in Firefox, the second one will fail and an error complaining about NS_ERROR_NOT_INITIALIZED. As long as you create two objects with different names, this error won't present itself
SamplesEdit
<?php if($_GET[action] == "gettext") { header("Cache-Control: no-cache"); header("Pragma: nocache"); echo "myElement=>The Ajax worked at ".date("h:i:s A")."!|"; die(); } ?> <html> <head> <script type="text/javascript" src="featherajax.js"></script> </head> <body> <div id="myElement"> This Text Will Be Dynamic </div> <input type="button" value="Click Me" onClick="var ao = new AjaxObject(); ao.sndReq('get','myajax.php?action=gettext');" /> </body> </html>
Related LinksEdit
For more information: Feather Ajax Project Page
CompetitorsEdit
|
Related Projects 
|
- AJASON
PHP 5 library and JavaScript client for AJAX. Fetch data asynchronously and develop interactive GUI-like Web applications. Call PHP functions and object methods from JavaScript and exchange even complex data types between client and server. - SMF
Simple Machines Forum — SMF in short — is a free, professional grade software package that allows you to set up your own online community within minutes.
Its powerful custom made template engine puts you in full control of the lay-out of your message board and with our unique SSI - or Server Side Includes - function you can let your forum and your website interact with each other.
SMF is written in the popular language PHP and uses a MySQL database. It is designed to provide you with all the features you need from a bulletin board while having an absolute minimal impact on the resources of the server. SMF is the next generation of forum software - and best of all it is and will always remain completely free! - Cajax
a PHP object-oriented framework to create and handle server-side requisitions though javascript remote calls. - ProtoJax
ProtoJax is an object oriented AJAX framework with PHP backend for development of web2.0 webpages or web applications. It has been built around Prototype javascript library. Light-weight, plugin system! With script.aculo.us plugin. - My-BIC
This is a basic state of mind system rather than a framework
Allows you to focus on making things happen rather than setting things up
Support for XML, JSON and TEXT ajax transactions
Supports EasyForms for one line form processing
Supports network Down handling if the server goes down
Simple, Fast, easy to use
Client side JSON encoding support - aSSL Secure Connection
aSSL is a library distributed under MIT License thats implements a technology similar to SSL without HTTPS.
|
Discussion

|
|
|
|
|