The problem is that I want to refresh a specific div after the Ajax response successfully recently I am using:
$("#parent_div").load(location + "#child_div")
This will refresh whole parent div not specific child_div
I have been use these
$("#parent_div").load(location + "#child_div")
$("#parent_div").reload(location + "#child_div")
$("#child_div").reload(window.location + "#child_div")
Any suggestion regarding this particular issue?