Hello I have a page with some jquery ui tabs on it and they work fine in chrome and firefox but in IE(tested 9) the content always stays the same when a user does an action and the page reloads the content is the same.
Could this be because I am using cookies to remember which tab the user was on
<script>
$(function() {
$( "#tabs" ).tabs({
cookie: {
expires: 1
},
ajaxOptions: {
error: function( xhr, status, index, anchor ) {
$( anchor.hash ).html(
"Couldn't load this tab. We'll try to fix this as soon as possible.");
}
}
});
});
</script>
Have you tried setting the ajaxoptions?