Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript e.targ equivalent Re: e.targ equivalent

#62627
Mr KiTT3N
Member

Change

to

if its nested then you can do something like

Code:
$(‘#menu li).hover(function(){
$(this, ‘ul’).slideDown(500);
},function(){
$(this, ‘ul’).slideUp(500);
});

Its defiantly not tested… but you should get the idea