function reload(){
var container = document.getElementById("yourDiv");
var content = container.innerHTML;
container.innerHTML= content;
//this line is to watch the result in console , you can remove it later
console.log("Refreshed");
}
$( "#your_div_ID" ).load(window.location.href + " #your_div_ID" );
$("#YourElement").html(htmlData);