JQuery SlideDown and Up - Firefox issue

I am having a problem with Firefox, and the contents of the set of fields overlap the contents below when shown / hidden using a slide show and a slide site.

There are several paragraphs in the field that contain form elements. When it is first shown using a slide show, the contents of the form seem to overlap the content below, as field slides are displayed in the field of view. The same thing happens in the opposite direction with the slide.

Does anyone know why this could be so?

Edit: Testing in Chrome, Safari and IE, and in these browsers it works great. Definitely a specific FF.

+3
source share
2 answers

I have the same problem. This is because in Firefox Fieldset is not subject to overflow: hidden lame ...

Just apply the following and see for yourself:

fieldset{
height:50px
overflow: hidden;
}

Solution ... Use div

+1
source
$("selector").slideDown('slow',function(){
    //call here your slide up functionality here
})
0
source

All Articles