Title: AHAX
Author: veloper
Published: <strong>April 15, 2011</strong>
Last modified: April 15, 2011

---

Search plugins

This plugin **hasn’t been tested with the latest 3 major releases of WordPress**.
It may no longer be maintained or supported and may have compatibility issues when
used with more recent versions of WordPress.

![](https://s.w.org/plugins/geopattern-icon/ahax.svg)

# AHAX

 By [veloper](https://profiles.wordpress.org/veloper/)

[Download](https://downloads.wordpress.org/plugin/ahax.1.0.zip)

 * [Details](https://wordpress.org/plugins/ahax/#description)
 * [Reviews](https://wordpress.org/plugins/ahax/#reviews)
 *  [Installation](https://wordpress.org/plugins/ahax/#installation)
 * [Development](https://wordpress.org/plugins/ahax/#developers)

 [Support](https://wordpress.org/support/plugin/ahax/)

## Description

AHAX is a drop-in solution that allows theme or plug-in developers to take advantage
of a very simple and streamlined way of making AJAX requests.

The goal of this plugin is to make the process of setting up an AJAX request as 
simple as possible.

This plugin centers AJAX requests around an “action.” This action is “bound” to 
a function (handler) on the back-end and called to from front-end via a custom JavaScript
class method — this process is demonstrated below.

#### Back-End

    ```
    ahax::bind( 'get_random_number', 'generate_number' ); function generate_number($output) {     $max = abs( ( int ) $_POST['max'] );     $output = mt_rand( 0 , ( $max <= 1000 ? $max : 1000 ) );     return $output; } 
    ```

#### Front-End

    ```
    var ahax = new AHAX(); ahax.post( 'get_random_number', { max : 1000 }, function( response ) {     jQuery( '#ahax_number' ).html( response ); }); 
    ```

#### Website

http://dan.doezema.com/2011/04/ahax-wordpress-plugin

#### Author

[Daniel Doezema](http://dan.doezema.com)

## Installation

 1. Upload `ahax` plugin directory to the `/wp-content/plugins/` directory.
 2. Activate the plugin through the ‘Plugins’ menu in WordPress

## FAQ

#### Where can I get more information on AHAX?

There is an extensive blog post — with a live example — located here: http://dan.
doezema.com/2011/04/ahax-wordpress-plugin

## Reviews

There are no reviews for this plugin.

## Contributors & Developers

“AHAX” is open source software. The following people have contributed to this plugin.

Contributors

 *   [ veloper ](https://profiles.wordpress.org/veloper/)

[Translate “AHAX” into your language.](https://translate.wordpress.org/projects/wp-plugins/ahax)

### Interested in development?

[Browse the code](https://plugins.trac.wordpress.org/browser/ahax/), check out the
[SVN repository](https://plugins.svn.wordpress.org/ahax/), or subscribe to the [development log](https://plugins.trac.wordpress.org/log/ahax/)
by [RSS](https://plugins.trac.wordpress.org/log/ahax/?limit=100&mode=stop_on_copy&format=rss).

## Meta

 *  Version **1.0**
 *  Last updated **15 years ago**
 *  Active installations **Fewer than 10**
 *  WordPress version ** 2.8 or higher **
 *  Tested up to **3.1.4**
 * Tags
 * [Action](https://wordpress.org/plugins/tags/action/)[ajax](https://wordpress.org/plugins/tags/ajax/)
   [bind](https://wordpress.org/plugins/tags/bind/)[dependancy](https://wordpress.org/plugins/tags/dependancy/)
   [development](https://wordpress.org/plugins/tags/development/)[javascript](https://wordpress.org/plugins/tags/javascript/)
   [public](https://wordpress.org/plugins/tags/public/)[theme](https://wordpress.org/plugins/tags/theme/)
 *  [Advanced View](https://wordpress.org/plugins/ahax/advanced/)

## Ratings

No reviews have been submitted yet.

[Your review](https://wordpress.org/support/plugin/ahax/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/ahax/reviews/)

## Contributors

 *   [ veloper ](https://profiles.wordpress.org/veloper/)

## Support

Got something to say? Need help?

 [View support forum](https://wordpress.org/support/plugin/ahax/)