Image may be NSFW.
Clik here to view.
Clik here to view.

Usually AJAX requests are send through GET method. This is because there are few parameters that one send while sending a request through AJAX and also it is relatively easy to create and send a GET method request.
Following code is used generally to create a GET request through AJAX.
function getXMLHttpRequestObject()
{
var xmlhttp;
/*@ccon
@if (@jscript_version >= 5)
try {
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
xmlhttp = new ...