hi all,
i ran into some problems/inconsistencies with IE6.
I have a simple structure:
<div class="container">
<div class="first">first</div>
<div class="second">second</div>
</div>
.second {
display: none;
}
javascript:
$(document).ready(function () {
$(".container").hover(
function () {$(".second").fadeIn(100);},
function () {$(".second").fadeOut(100);}
);
});
simple enough, but after the first fadeOut, all subsequent fadeIns do ..
nothing. ".first" disappeared.
The same when altering between show(100);hide(100);
It works with show(x);hide(); though!!
Also slideUp/-Down from the interface-project is doing fine.
Whats going on here?
Of course no problems with FF.
regards
Caspar
--
..
thdz.x
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/