vote up 0 vote down star

I have a small piece of jquery, where I am hiding then showing a div. After both events are completed, I execute a few lines of code which is like so:

 $(".subFields").hide("slide", { direction: "up" }, 250, function() {           
            $(".subFields").show("slide", { direction: "up" }, 250, function() {                
                container.addClass("formfield");
                container.removeClass("formfieldCurrent");
                fillOpenFields($(this).val());           
            });
        });

Problem is the code in the show event is entereing an infinite loop for some reason, any ideas.

flag

3 Answers

vote up 0 vote down

The problem was in the method fillOpenFields, sorry for the inconvinience

link|flag
vote up 0 vote down

Your using a class selector which can mean you get multiple elements matched. The hide and show will run for each element found hence this might explain why it seems a infinite loop is occuring.

Do you have multiple elements with that class?

Can you paste the markup and full js.

Also it is better to try and use the node name as part of the selector

e.g $('div.someClass');

otherwise jQuery has to loop the whole dom to test each element against the class rather than using getElementsByTagName

link|flag
vote up 0 vote down

At first glance I cant see the issue. What does fillOpenFields function do?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.