Skip to content

Instantly share code, notes, and snippets.

@Chr15t1an
Last active April 5, 2019 17:34
Show Gist options
  • Save Chr15t1an/72a93fdf905d672969f831fbe3eeed25 to your computer and use it in GitHub Desktop.
Save Chr15t1an/72a93fdf905d672969f831fbe3eeed25 to your computer and use it in GitHub Desktop.
replace all images with place holder images
$( document ).ready(function() {
var imageUrl = 'img/landing-1.jpg';
$("img").each(function(){
$(this).attr('src', imageUrl );
});
$( ".background-image-holder" ).css( "background", 'url(' + imageUrl + ')' );
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment