I need your help in order to refresh a div id="mytable"
in my html once the function is called from a method. Currently, I am loading the full page once it is called using the below lines.
In my java method, I am using the below line to call a javascript method:
RequestContext.getCurrentInstance().execute("autoRefresh()");
The html code :
<script type="text/javascript">
function autoRefresh() {
window.location.reload();
}
</script>
<div id='mytable'>
<h1 id='My Table'>
<table></table>
</h1>
</div>
You can load HTML page partial, in your case is everything inside div#mytable.
more information read this http://api.jquery.com/load/
Update Code (if you don't want it auto-refresh)