Home › Forums › JavaScript › Image Slider – Images display in a stack before fully loaded › Re: Image Slider – Images display in a stack before fully loaded
July 13, 2010 at 2:55 pm
#79718
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");
});
});