Plugin info

Total downloads: 1,865
Active installs: 0
Total reviews: 0
Average rating: 0
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 1
Last updated: 4/15/2011 (5374 days ago)
Added to WordPress: 4/15/2011 (14 years old)
Minimum WordPress version: 2.8
Tested up to WordPress version: 3.1.4
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 5374 days ago

20/100

Is AHAX abandoned?

Possibly abandoned (last update 5374 days ago).

Compatibility

Requires WordPress: 2.8
Tested up to: 3.1.4
Requires PHP: f

Languages

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

No similar plugins found yet.

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

Installation

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

Frequently Asked Questions

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

Review feed

No reviews available

Screenshots

No screenshots available

Changelog

No changelog available