how to reload part of a page with javascript code example
Example 1: reload webpage javascript
location.reload();
Example 2: Function used to reload the portion of a page using javascript
$('#thisdiv').load(document.URL + ' #thisdiv');
• Be sure to include a space before the id selector when concatenate.