I am new to jquery
. All I want is to reload my html page after I close my dialog box as shown below:
$("#patient_info").html(response);
$( function() {
$( "#patient_info" ).dialog({
autoOpen: false,
show: {
effect: "Bounce",
duration: 1000
},
hide: {
effect: "Fade",
duration: 1000
}
});
$( "#patient_info" ).dialog( "open" );
});
},
complete: function(){
}
How do I do that?