On change of dropdown im reading the drop down value and making on ajax call to fetch the data.I want to refresh the same page. i tried this
$('#status').change(function(){
var status = $('#status').val();
$.ajax({
url : "Partners.action",
data: {status : status},
success : function(data) {
alert(status);
$("#status").html(data);
}
});
});
but it is not refreshing