I have a function resizePreview() that will resize an image in a jQuery dialog box if the image is too big. This image can be changed by the user. My code goes something like this:

$('#imagePreview').attr('src', newImageSrc);
resizePreview();

resizePreview() uses $('#imagePreview').width() and .height() to get the dimensions and resizes accordingly. The problem is that the new image isn't loaded by the time resizePreview() is called so the image is resized according to it's original dimensions, not according to the dimensions of the newly loaded image.

If I put an alert() call in between the two lines of code it works (since the alert gives the browser enough time to load the new image). Apparently I should use an event? Is there an existing event, or is there a way I can make one, for when the image src has changed (sort of like an onChange event, but for that attribute) or for when the new image has completed loading? Thanks for your time.

link|improve this question

80% accept rate
feedback

2 Answers

up vote 5 down vote accepted

$.load() works for Images.

http://docs.jquery.com/Events/load#fn

$('img.userIcon').load(function(){
  if($(this).height() > 100) {
    $(this).addClass('bigImg');
  }
});
link|improve this answer
Got it to work, thanks! – CMB Aug 18 '09 at 16:08
feedback

Image objects allow attachment of onload event listeners:

var img = new Image;
img.onload = function () {
    alert("Loaded");
};
img.src = "dummy-picture.png";
link|improve this answer
Thanks for your help! – CMB Aug 18 '09 at 16:09
feedback

Your Answer

 
or
required, but never shown

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