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
You can load HTML page partial, in your case is everything inside div#mytable.
setTimeout(function(){
$( "#mytable" ).load( "your-current-page.html #mytable" );
}, 2000); //refresh every 2 seconds
more information read this http://api.jquery.com/load/