[SOLVED] JQuery + Firefox PC = Flickering Animation
Hi,
I'm sorry if this has been posted. I searched the forum and didn't see anything. My problem is this:
I'm trying to create a content slider, basically just sliding a large DIV with a number of elements inside of it. The parent DIV has the overflow set to hidden and I'm using the following code (an example of a move) to make the slide happen:
-
$(".slide3").click(function() {
$(".window").animate({
left: "-630px"
}, 500);
});
This works wonderfully in all browsers except Firefox on PCs. The div that is moving (<div class="window">) is sliding behind another DIV which seems to cause some sort of conflict. The animation results in a flickering of the content that is getting slid behind. I know this is confusing, the best way to see what I'm talking about is to see for yourself:
http://adrogen.com/clients/intimate-org ... oducts.php
Just click either "next" or one of the list elements on the left. Again, this is only happening on Firefox PC.
Any help or suggestions would be beyond appreciated.