internet explorer 11 - jQuery fadeIn and fadeOut not working in IE11 -
since upgrading ie11 have noticed jquery fadein , fadeout methods don't work expected. working fine in ie10. have ideas why might be?
the code using is:
if($subheader.next('.midcontent').is(':visible')) { $subheader.next('.midcontent').fadeout('slow').attr('aria-hidden', true); $subheader.find('.sectiontype').addclass('closed'); } else { $subheader.next('.midcontent').fadein('slow').attr('aria-hidden', false); $subheader.find('.sectiontype').removeclass('closed'); }
make sure .fadein , .fadeout functions being applied <td> , not <tr> elements because apparently ie not support opacity on elements, on td. problem. when created class called .hidden , defined display:none , added class each td, fadein td elements in row fine.
Comments
Post a Comment