I'm having trouble finding out how to set jQuery cookie for my tabs on this page: http://onomadesign.com/wordpress/identity-design/alteon-a-boeing-company/
My jQuery Tabs code is like this:
$(document).ready(function(){
$(function () {
var tabContainers = $('div.sc_menu_wrapper > div');
$('a.tab').click(function () {
tabContainers.hide().filter(this.hash).show();
$('a.tab').removeClass('selected');
$(this).addClass('selected');
return false;
}).filter(':first').click();
});});
So what piece of code do I need to make the last selected tab visible when visitors click on a different project. In other words: when people select a project from 'industry' tab, it should stay open on the next page.
I'm kinda lost here, any help would be great. Thankyou.