Refresh/reload the content in Div using jquery/ajax
When this method executes, it retrieves the content of location.href, but then jQuery parses the returned document to find the element with divId. This element, along with its contents, is inserted into the element with an ID (divId) of result, and the rest of the retrieved document is discarded.
$("#divId").load(location.href + " #divId>*", "");code type:
Taken from:
http://stackoverflow.com/questions/18490026/refresh-reload-the-content-in-div-using-jquery-ajax
