I want to change html without reload. I do it like:
$(\'#left_menu_item\').click(function(e) { if (!!(window.history && history.pushState)) {
window.onpopstate = function(event) { if(event && event.state) { location.reload(); } }
This is what I use :)