I have problem with this JS code. When I started to test it, it is working properly with FF and Chrome but not with IE8.
I guess, something is wrong with IE visiblity property or the mouseover events. I tried everything but I am so deep in here I can't see the whole picture.
How can I make it run properly also in IE. Hate IE :))
$(document).ready(function() {
var doFadeIn = function() {
$('.aboutme').css({ opacity:0, visibility:'visible'}).fadeTo(900,1);
};
$('layout_aboutme').mouseover(doFadeIn);
var doFadeOut = function(){
$('.aboutme').css({ opacity:0, visibility:'hidden'}).fadeTo(900,1);
};
$('layout_aboutme').mouseleave(doFadeOut);
});