I'm using jquery Image Sequencer, on my local machine i have no problem. but when I deployed it on a production server it failed to load the image. please help me for this problem.
this is my image sequencer code :
for (var p = 0; p <= e.count; p++) c.push(e.path + "/" + p + "." + e.ext);
return t("<div class='jquery-sequencer-preload'></div>").appendTo("body").css("display", "none"), t(c).each(function() {
t(""+e.element+"").attr("src", this).load(function() {
t(this).appendTo(""+e.element+""), a++, a === c.length && n()
})
}), t(window).scroll(function() {
s = t(u).height(),
r = t(this).height(),
o = t(this).scrollTop(),
h = e.speedscroll * o / (s - r), i = Math.round(h / 100 * e.count),
i < e.count && t("img."+e.sequence).attr("src", c[i])
}), this