Chequear si una imagen fue cargada


/ Published in: JavaScript
Save to your folder(s)

Con esto puedes tener control de las imagenes que fueron cargadas y las que no.


Copy this code and paste it in your HTML
  1. var imgsrc = 'img/image1.png';
  2.  
  3. $('<img/>').load(function () {
  4. alert('La imagen se carg�³');
  5. }).error(function () {
  6. alert('Error al cargar la imagen');
  7. }).attr('src', imgsrc);

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.