|
Project Information
Members
Featured
Wiki pages
|
By marking up your HTML with simple attributes, you can make your website Ajaxified without writing any JavaScript. This tool will do all the heavy work for you. What is SimpleAjax?SimpleAjax is a lightweight (8K) tool that was made for people who don't know JavaScript, but do know server-side programming (PHP, Ruby, etc.), and want to AJAX enable their website. SimpleAjax will take care of all the event handling and data collection tasks that need to be done in JavaScript so all you have to do is write the server part. SimpleAjax will also take the server response and put it anywhere on the page for you. You do not need to write a single line of JavaScript. Features
DemosFeature Tests, Tab Widget, YouTube Test TutorialQuick run-through on using SimpleAjax DownloadComing soon, but now on SVN only, uncompiled. MIT Licensed. Cross-browser. What does it look like?<div id="vid1"> <a href="play.php?q=3" rel="get # vid1">Play Video</a> </div> The above snippet will call play.php?q=3 and place the returned HTML into a div with id "vid1". See this demo. ScopeSimpleAjax is not a framework or a library. It doesn't help you write object-oriented code, or compact code, or make things fly across the page. It doesn't try to simulate the desktop with dialogs and widgets. Instead it is designed to do one thing only, which is to send data to the server and update the page, without ever leaving the page. This is where AJAX is supposed to shine: in its ability to not disrupt the user's work flow. |