I am just wondering in jquery .ajax has builtin variables like $_POST in php. In the code below how is variables like data, request etc comes from
$.ajax({
type: "POST",
url: "bin/process.php",
data: data,
success: function(request) {
//display message back to user here
}
});