$.post
Simple AJAX post function that emulates jQuery's post
Code
$.post('/script.cgi', 'q=searchstring', function($j) {
var _o = eval($j);
alert(_o.status);
}
This code calls script.cgi and passes q=searchstring to it
then calls the callback function after the script is executed.