|
1
|
jQuery(document).ready(function() { |
|
2
|
|
|
3
|
// Tabs |
|
4
|
jQuery('#tabs').tabs().show(); |
|
5
|
jQuery('#tabs').tabs({ |
|
6
|
active : jQuery.cookie('activetab'), |
|
7
|
activate : function( event, ui ){ |
|
8
|
jQuery.cookie( 'activetab', ui.newTab.index(),{ |
|
9
|
expires : 10 |
|
10
|
}); |
|
11
|
} |
|
12
|
}); |
|
13
|
}); |
|
14
|
|
|
15
|
|