I have this weird behavior with .fadeIn()
If i write
$('#MyDiv').show();
Div shows great.
However, if I write
$('#MyDiv').fadeIn(400);
Div shows, but with opacity 0
!
Line to:
$('#MyDiv').hide() .html(TheHTML) .css('top', 0);
UPDATE: if I write $('#MyDiv').show(400);
div also remains at opacity 0
.
source share