reload part of page with js code example
Example: 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.
$('#thisdiv').load(document.URL + ' #thisdiv');
• Be sure to include a space before the id selector when concatenate.