I am attempting to use jQuery to determine if an image has properly loaded.
The following works just fine (and returns true or false as of
I dont know if firefox has another prop, method that does it but, you can use this workaround:
$(document).ready(function(){
$("img").each(
//for each image declared in html
function(index)
{
document.images[index].complete= false;
document.images[index].onload = function(){ this.complete= true};
});
});