$.ajax({
type: 'POST',
url: '/home/Tour/',
dataType: 'html',
success: function (result) {
if (result) {
//code here
}
},
error: function (jqXhr, textStates, errorThrown) {
console.log(errorThrown);
}
});



public PartialViewResult Tour()
{

return PartialView();

}