I\'m using the tabs of jQuery UI: http://jqueryui.com/demos/tabs/
How to update the current url of the browser when the user click on a different ta
$( "#tabs" ).tabs({ activate: function(event, ui) { //Key => random string //url => URL you want to set window.history.pushState({key:'url'},'','url'); } });