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 
|
- AJAX Spell
Use AJAX spell checker to check the spelling of tex areas, like gmail message composer, using PHP, Javascript, and pspell / aspell. - CakePHP
Cake is a rapid development framework for PHP which uses commonly known design patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. Our primary goal is to provide a structured framework that enables PHP users at all levels to rapidly develop robust web applications, without any loss to flexibility. - aSSL Secure Connection
aSSL is a library distributed under MIT License thats implements a technology similar to SSL without HTTPS. - Prado
PRADOTM is a component-based and event-driven programming framework for developing Web applications in PHP 5. - DutchPIPE
PHP object-oriented framework to turn sites into real-time, multi-user virtual environments - ajChat
Ajchat is a simple online chat system which uses AJAX. Ajchat also allows sharing or embedding of chatrooms into websites
|
Discussion

|
|
|
|
|