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
I used this method within my jQuery responsive tabs to hash the url with the active tab.
$(function() { $('#tabs, #subtabs').responsiveTabs({ activate: function(event, ui) { window.location.hash = $("ul li.r-tabs-state-active a").attr("href"); }, startCollapsed: 'accordion' }); });