User264732274 posted
jquery ajax make call type of Get or Post by default ?
$.ajax({
url: "/YourController",
cache: false,
dataType: "html",
success: function(data) {
$("#content").html(data);
}
});
in the above code no where Get or Post has been set..........so what is default ?