I'm having a bit of an issue preloading an image, and setting up stuff when it is loaded. I use the onLoad (or the jQuery $("img").load()-thingy) event to detect when the image is loaded. This works fine in most browsers, exept when im trying it on an iPad/iPhone. Somehow it just throws the onError event (which has NO description WHAT SO EVER on what the error is!). But when I, in my onError Event, redirect to the image, it shows just fine. Very strange and can't seem to figure out what is causing it.
Some code:
if( !limg ) {
var load = function($img) {
setTimeout(function() {
var src = $img.attr("src");
video.trigger(filmLoad, [s]);
if (((src.indexOf(url) >= 0 && urlIsString) || !urlIsString)
&& src.indexOf("_low.") >= 0)
{
$img.attr(
"src",
urlIsString
? url.replace("_low.", "_high.")
: set.film.url.high);
still = stillIsString
? still.replace("_low.", "_high.") : set.film.still.high;
}
}, 0);
};
limg = s.loaderimg = $("<img>")
.appendTo(video)
.css({opacity: 0, position: "absolute", left: "-200em"})
.load(function(e) { load($(this)); })
.error(function(e) { if(e.target.complete) { load($(this)); } })
.src("src/to/my/image.jpg");
}