I have some div tags on page, each having an img tag, what I am doing i that I am fadingIn and fadingOut those divs, given below [EDITTED : I forgot to mention the website, its www.ideas.com.pk]
<div id="ideasBG" class="outerBGs" style="display: none">
<!--<p style="z-index:999; margin:0; margin-top:300px; color:red; position:absolute;">Let the Feeling Wrap Around</p>-->
<img src="images/main_ideas.jpg" alt="" class="background" />
</div>
<div id="womenBG" class="outerBGs" style="display: none">
<!--<p style="z-index:999; margin:0; margin-top:300px; color:red; position:absolute;">Let the Feeling Wrap Around</p>-->
<img src="images/main_women.jpg" alt="" class="background" />
</div>
<div id="menBG" class="outerBGs" style="display: none">
<!--<p style="z-index:999; margin:0; margin-top:300px; color:red; position:absolute;">Let the Feeling Wrap Around</p>-->
<img src="images/main_men.jpg" alt="" class="background" />
</div>
<div id="kidsBG" class="outerBGs" style="display: none">
<!--<p style="z-index:999; margin:0; margin-top:300px; color:red; position:absolute;">Let the Feeling Wrap Around</p>-->
<img src="images/main_kids.jpg" alt="" class="background" />
</div>
<div id="homesBG" class="outerBGs" style="display: none">
<!--<p style="z-index:999; margin:0; margin-top:300px; color:red; position:absolute;">Let the Feeling Wrap Around</p>-->
<img src="images/main_home.jpg" alt="" class="background" />
</div>
Now, on mouseOver event on the navigation list items below, all the other backgrounds and divs (accessed by class name) are fadedout and only the respective div is fadedin.
Now, if you continue hovering mouse starting from left moving towards rights, you will see that fadeIn is called after fadeOut is finished, going from right to left is working fine. This is the problem. I would be grateful if someone can help me with this. The javascript code is below.
$('#backgrounds').stop(true,true).fadeOut(1000);
$('.outerBGs').stop(true,true).fadeOut(1000);
if ($(this).hasClass('ideas')) {
$('#ideasBG').stop(true, true).fadeIn(1000);
$('#bgIdeas').empty();
$('#bgIdeas').append('someHtml');
selectedLi = "ideas";
}
else
if ($(this).hasClass('women')) {
$('#womenBG').stop(true, true).fadeIn(1000);
$('#bgIdeas').empty();
$('#bgIdeas').append('someHtml');
selectedLi = "women";
}
else
if ($(this).hasClass('men')) {
$('#menBG').stop(true, true).fadeIn(1000);
$('#bgIdeas').empty();
$('#bgIdeas').append('someHtml');
selectedLi = "men";
}
else
if ($(this).hasClass('kids')) {
$('#kidsBG').stop(true, true).fadeIn(1000);
$('#bgIdeas').empty();
$('#bgIdeas').append('someHtml');
selectedLi = "kids";
}
else
if ($(this).hasClass('homes')) {
$('#homesBG').stop(true, true).fadeIn(1000);
$('#bgIdeas').empty();
$('#bgIdeas').append('someHtml');
selectedLi = "homes";
}