[jQuery] Flickering problems in IE
Hello,
I am using a slideUp and slideDown animation on several components in
a page. It looks smooth in FF, but in IE, there is a flicker when the
slideDown starts, and then again at the end of the slideUp. The
flicker is showing the entire region that is being hidden / show for a
brief moment.
Any ideas on how I can approach fixing this?
Below is the code from one place where this is happening:
function slide_search(type) {
$(document).ready(function(){
if (type == 'down') {
$('.framenav-search-results').animate({ height:
'show',opacity:'show'}, 'slow');
return;
}
$('.framenav-search-results').animate({ height:
'hide',opacity:'hide'}, 'slow');
$('.framenav-search-results').hide();
})
}