Skip to content

Instantly share code, notes, and snippets.

@bran921007
Created February 5, 2015 15:19
Show Gist options
  • Save bran921007/3a2ea0babe0771a89a27 to your computer and use it in GitHub Desktop.
Save bran921007/3a2ea0babe0771a89a27 to your computer and use it in GitHub Desktop.
1. Ocultar esas imagenes:
$("img").error(function(){
$(this).hide();
});
2. Reemplazar esas imágenes por una por defecto.
$("img").error(function() {
$( this ).hide();
}).attr( "src", "nofoto.png" );
@bran921007
Copy link
Author

Ocultar imagenes por defecto en jquery

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment