I dont know if its possible with HTML5, but I use AJAX and JQUERY for a dynamic site/content refresh
the Jquery Documentation is to find at http://docs.jquery.com/Main_Page and for the JqueryUI at http://jqueryui.com/demos/
here is a simple JQUERY/AJAX code snippet
$.ajax({
beforeSend:function() {
$("#loader").show();
},
url:your/path/file.php,
method:"get",
data:{rights:usrRights,rights2:usrRights2},
dataType:"html",
success:function(output) {
$("#content").html(output);
},
complete: function() {
$("#loader").fadeOut("slow");
}
});
included a loader div with an overlay and by default its hidden in the div i put a .gif loader image
hope I could help you
regards