How do i use an "or" statement in jquery, i have two separate statements that i think i can combine to be just one:
$('li.members').hover(function() {
$('.members-show').show();
$('.brokers-show').hide();
$('.providers-show').hide();
$('.employers-show').hide();
$('.seniors-show').hide();
return false;
});
$('li.members-active').hover(function() {
$('.members-show').show();
$('.brokers-show').hide();
$('.providers-show').hide();
$('.employers-show').hide();
$('.seniors-show').hide();
return false;
});

function doStuff() { ... } $('li.members').hover(doStuff); $('sthElse').live('click', doStuff);Just thought I should add that =) – David Hedlund Aug 10 '10 at 14:43.show()and.hide()functions when the mouse leaves, then you might as well use.mouseenter()instead of.hover(). Right now, the handler is firing a second time with no visible effect when the mouse leavesli.members. – user113716 Aug 10 '10 at 14:59