I have a navigation menu child ul animating when it\'s parent li is hovered with the mouse. It also slides up when the mouse exits. However, I am trying to get it to delay by 1
Wrong order, get the elements before you delay the animation, otherwise the delay is applied to this, not it's children.
this
$(this).children("ul").delay(1000).slideUp();