Active Name Version Description
Android An Open Handset Alliance Project
Axis2 1.3
CakePHP 1.2 Rapid Development Php Framework
CSS
Grails 1.x Groovy version of Ruby on Rails
Groovy 1.6 Object-oriented language alternative for Java platform
Hibernate v3 High performance object/relational persistence and query service
HTML 4.x
Java 6 6
Java EE 5 5
Javascript Javascript functions, classes, event handlers
jQuery The Write Less, Do More, JavaScript Library
JSON Java JSON in Java from json.org
MySQL
Perl 5.10.0
PHP 5.x
Prototype A widely used JavaScript Framework
Python 2.5
Python C 2.5
Python Lib 2.5
Rails 2.3.5 A framework for developing web applications according to MVC
Ruby 1.8.7 A dynamic, interpreted, open source programming language
SiteMesh
Spring Framework 2.5 Full-stack Java/JEE application framework
Struts 2 2.0.11.2
Trails Core 1.2.1 Domain driven development framework in the spirit of Ruby on Rails
Trails Hibernate 1.2.1
Trails Security 1.2.1
Trails Test 1.2.1
Xerces2 J 2.9.1
Quick search is faster, or start browsing by clicking on API title
    Ajax - Prototype JavaScript framework

    Ajax

    Prototype offers three objects to deal with AJAX communication, which are listed below. With Prototype, going Ajaxy is downright simple! All three objects share a common set of options, which are discussed separately.

    The articles below provide you with several examples. The Learn section also features a more narrative, tutorial-style article.

    Methods

    Ajax Options

    This details all core options (shared by all AJAX requesters) and callbacks.

    Ajax.PeriodicalUpdater

    new Ajax.PeriodicalUpdater(container, url[, options])

    Periodically performs an AJAX request and updates a container’s contents based on the response text. Offers a mechanism for “decay,” which lets it trigger at widening intervals while the response is unchanged.

    Ajax.Request

    new Ajax.Request(url[, options])

    Initiates and processes an AJAX request.

    Ajax.Responders

    Ajax.Responders.register(responder)
    Ajax.Responders.unregister(responder)

    A repository of global listeners notified about every step of Prototype-based AJAX requests.

    Ajax.Response
    1.6

    The object passed as the first argument of all Ajax requests callbacks.

    Ajax.Updater

    new Ajax.Updater(container, url[, options])

    Performs an AJAX request and updates a container’s contents based on the response text.