vote up 3 vote down star

If I have a beacon :

<img src="http://example.com/beacon" />

I want a method to be called once the beacon request finishes. Something like :

<script>
    $("img.beacon").load(function() {
        // do stuff knowing the beacon is done
    });
</script>

Is it possible? Is it in JQuery?

flag

8 Answers

vote up 6 vote down check

Sure. Remember the load needs to be added before the src attribute.

$('<img />').load( function(){
  console.log('loaded');
}).attr('src', imgUrl);

If you have defined the image tag in the markup then your stuck with when the window load event fires to be sure the image has come down the wire.

link|flag
Please correct the link, because it links to this answer... – Robert Koritnik Nov 8 at 13:14
vote up 0 vote down

Yes, the code in your question works as long as you run it before the image has loaded.

link|flag
vote up 0 vote down

Another option, if it suits you: The onload event occurs immediately after a page or an image is loaded.

Such as:

<img ... onload="alert('test');" />
link|flag
2  
but its jQuery, unobtrusive. Inline js events are a no no – redsquare Aug 10 at 21:57
vote up 2 vote down
$('img.beacon').load()

Will not always work correctly, ussually I do this:

$.fn.imageLoad = function(fn){
    this.load(fn);
    this.each( function() {
        if ( this.complete && this.naturalWidth !== 0 ) {
            $(this).trigger('load');
        }
    });
}

The above code also covers cases where the image has finished loading before the script is executed. This can happen when you define the image in the markup.

Use like this:

<img src='http://example.com/image.png' class='beacon' />
<script type='text/javascript'>
$(document).ready(function(){ //document.ready not really necessary in this case
   $('img.beacon').imageLoad(function(){
      //do stuff
   });
});
</script>
link|flag
2  
why $(this).get(0).naturalWidth and not this.naturalWidth? – redsquare Aug 10 at 21:53
@redsquare, good point, never really though about that. (changed, but untested (although it should just work)) – Pim Jager Aug 10 at 21:55
Ah good. Do you get through lots of keyboards;) – redsquare Aug 10 at 21:56
1  
If i'm not mistaken, $(this).get(0) returns the DOM element, instead of a jQuery object – Jim Schubert Aug 10 at 21:57
yeah the same as this on its own – redsquare Aug 10 at 21:58
show 3 more comments
vote up 1 vote down

You could use the onload event which fires when the entire page has finished loading.

$(window).load(function(){
  //everything is loaded
});
link|flag
vote up -1 vote down

I don't know exactly how your page is set up but remember that this needs to either be put in a .ready block or appear after the img tag in question.

link|flag
Is what I said not correct? – theIV Aug 10 at 22:39
vote up 1 vote down
   <script type="text/javascript">
   $().ready(function() {

       $('img#beacon').attr('src', 'http://sstatic.net/so/img/so/logo.png')
            .load(function() { alert('Image Loaded'); })
            .error(function() { alert('Error Loading Image'); });
   });
   </script>

This will load the Stackoverflow logo.

If it loads successfully, the alert('Image Loaded'); is performed

if it fails, the alert('Error Loading Image'); is performed

of course, either of these can be replaced with your own functions.

As a new user, it refused my image tag; but the image tag should only contain the id='beacon' attribute; unless you want to add a class. We're setting the 'src' attribute in code here, typically images that you are monitoring for completion have src values that are set programatically anyway.

link|flag
vote up 0 vote down

Here's a simple javascript code that works on all browsers:

var myImage = new Image();

myImage.onload = function() {
    var image_width = myImage.width;
    var image_height = myImage.height;
    $('#pictureEl').html('<img width="'+ image_width +'" height="'+ image_height +'" src='+ myImage.src + '></img>');   		
};

myImage.src = myUrl;

A jQuery snippet must be doing the same thing, under the hood.

link|flag
I don't think it does it this way, but you can check it out yourself... And doing it the way you did it is plain wrong. You don't use event binding that is the proper way of event handling. – Robert Koritnik Nov 8 at 13:13

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.