Hi Guys, I have searched through this entire site but i couldn't find what i was looking for.
I am using Jquery UI tabs and i try to keep the page on the selected tabs when the page is refreshed.
This is what i got:
$(document).ready(function() {
var cookieName = 'stickyTab';
$('#tabs').tabs({
selected: ($.cookies.get(cookieName) || 0),
select: function(e, ui){
$.cookies.set(cookieName, ui.index);
}
});
});
It works fine in Safari but it doesnt work in IE, which is the problem. Could anyone help me out?