how to refresh part of html page using 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.