593 0 0 0
Last Updated : 2025-04-28 23:12:48
Refresh/reload the content in Div using jquery/ajax
setTimeout(function(){// wait for 5 secs(2)
//location.reload(); // then reload the page.(3)
//$("#admin_about_form").load(window.location.href + " #admin_about_form");
$("#admin_about_form").load(" #admin_about_form > *"); //this is the best working solution for me
}, 2000);