Hi Klaus!
Thanks so much!!!
It work like a charm !
I'm using your tabs system and I've put a sub nav based on suckerfish
menu (
http://be.twixt.us/jquery/suckerFish.php)...You can see what I mean here
=>
http://ugo.celeonet.fr/simon/I'm using your code and the one from the SuckerFish Menu :
$(document).ready(function(){
$("#menu > ul").tabs( { event: 'mouseover'});
var $tabs = $('#menu > ul').tabs({
show: function() {
clearTimeout(delay);
}
});
var initial = $tabs.tabsSelected();
var delay;
$tabs.bind('mouseout', function() {
setTimeout(function() {
$tabs.tabsClick(initial);
}, 7000);
});
});
// Sucker Fish JS code
$(document).ready(function(){
$(".nav-one li").hover(
function(){ $("ul", this).fadeIn("fast"); },
function() { }
);
if (document.all) {
$(".nav-one li").hoverClass ("sfHover");
}
});
$.fn.hoverClass = function(c) {
return this.each(function(){
$(this).hover(
function() { $(this).addClass(c); },
function() { $(this).removeClass(c); }
);
});
};
Does anyone know if it's possible to go back to the initially selected
tab after completely
mouseout on ALL the menu, and not only on the main top tab like in my
example?
I guess it's possible, but I cannot see how for the moment...
Tons of thanks in advance
Simon