Problem with effects in IE8
Hello!
I´m using alot of slideUp, slideDown effects on our site. It works fine in every browser except for IE8, where elements sometimes mysteriously dissappear depending on where cursor is.
To see problem, go to:
http://www.nordicnet.net
-->
press Advanced search
-->
press Products
--> press view all products
Has anyone else had problems with jquery effects in IE8 and knows of any workaround?
/regards
edit:
this is one of the methods in which the problem occurs:
-
// Show/hide section in advanced search form
function slideAdvancedSearchSection(obj)
{
if ($(obj).hasClass("visible")) {
$(obj).removeClass("visible").next().slideUp();
} else {
$(obj).next().children().contents().find("button").hide();
$("div.section-head").removeClass("visible").next().slideUp();
$("div.section-content").removeClass("visible").next().slideUp();
$(obj).addClass("visible").next().slideDown().contents().find("button").show();
}
}
If I do hide() instead of slideUp() it works in IE8 too, but doesnt look as good.