AJAX is just a generic term that everyone uses when making request to a remote server.
$.ajax(
{
async: true | false,
url: 'your url',
type: 'GET | POST | PUT | DELETE',
data: {your data if any:value if any},
contentType: "application/json",
success: Success_CallbackFunction,
error: Error_CallbackFunction
});