summaryrefslogtreecommitdiff
path: root/js/live/liveajax.js
blob: a6a80ea782e155bcfba1ebe08f851ac28108d0c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
/*
 * Javascript function for quick ajax requests.
 * This file needs mootools.js to be included on the pages.
 */

function LiveSimpleAjaxRequest(url, param, value)
{
	var req = new Ajax(url, {
		  method : 'post'
		}).request(param + '=' + value);
};