Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Image Slider – Images display in a stack before fully loaded Re: Image Slider – Images display in a stack before fully loaded

#79718
quart
Participant

sorry the correct link is : http://kbjones.com

is it a matter of clearing a div or is it in my jquery?

$(document).ready(function(){
$("div#images div").hide();
$("div#button li").hover(function(){
var elid = $(this).attr(‘id’);
$("div#images div").hide();
$("div#images div#" + elid + "").fadeIn("slow");
});
});