0

I'm trying to make a drop-down menu, works fine in firefox It does not work in other browsers

get the following error:

jQuery(".parent").hover(  function () {
    jQuery(this).toggleClass("activeli").(".parent").stop(true, true).slideToggle(); << error line
});

This is the web link http://www.jeanca.com/clientes/evoca/

1
  • Firefox says "Error: XML filter is applied to non-XML value ({0:#1=({}), context:#1#, length:1}) Source File: jeanca.com/clientes/evoca Line: 55". It must just keep going where other browsers bail. Commented Sep 30, 2011 at 16:02

1 Answer 1

2

The problem is toggleClass("activeli").(".parent") Probably should be.

jQuery(this).toggleClass("activeli").find(".parent").stop(true, true).slideToggle();
Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.