jQuery fadeIn and fadeOut issue in Chrome, but works in firefox
Any reason why the开发者_运维技巧 arrows on this carousel fade out in firefox but not chrome? Please find the link
$(document).ready(function()
{
$("div.slider-wrap").hover(
function () {
$("div.stripNavL").fadeIn('slow');
$("div.stripNavR").fadeIn('slow');
},
function () {
$("div.stripNavL").fadeOut('slow');
$("div.stripNavR").fadeOut('slow');
}
);
});
You will notice the arrows still don't show up in Chrome, and in FF, the whole carousel doesn't work properly
as this question I change document ready to load, but still no luck.
Strange. In both Fx and Chrome, there's a 404 in trying to fetch svwloader.gif at the path specified.
The GIF loading is done within the Coda slider JS. Firefox forgives the missing file, but Chrome stops the script from executing.
精彩评论