jquery ui tabs no longer supporting cookie? now what?

Had the same issue bite me today. Here is what seems to work: Use jquery.cookie plugin (https://github.com/carhartl/jquery-cookie) (This step is not necessary, but it makes the life easier dealing with cookies) Use the following code fragment: $( “.selector” ).tabs({ active : $.cookie(‘activetab’), activate : function( event, ui ){ $.cookie( ‘activetab’, ui.newTab.index(),{ expires : 10 }); … Read more

Problems with Google Maps API v3 + jQuery UI Tabs

Note: this answer received an invalid 3rd party edit which essentially replaced its content, something that a 3rd party editor should not do. However, the result may be more useful than the original, so both versions are now given below: Original author Anon’s version from 2010, after one edit by Anon google.maps.event.trigger(map, ‘resize’); map.setZoom( map.getZoom() … Read more