Jquery Ajax Method Sample
$.ajax({
type: 'POST',
url: "/Flight/FlightAllResult",
data: ({ 'type': filtertype, 'priceby': priceby }),
success: function (res) {
//var minprice = $(res).find('#HdnMinAmount').val();
//var maxprice = $(res).find('#HdnMaxAmount').val();
$('#divResults').html(res);
},
error: function (res) {
}
});
No comments:
Post a Comment