Javascript may be entered between script tags
<script type="text/javascript" >
CONTENT ALTERATION HERE
SECOND ALTERATION HERE
</script>
<script type="text/javascript">
// Replace book cover images that fail to load with a default book image
// idea from University of SouthHampton LibGuides http://library.soton.ac.uk/home/subjects
// Wait until all images have loaded or failed to load due to an error
$(window).load(function() {
// replace book covers with generic book cover image
$('.s-lg-book-cover img').each(function() {
if (!this.complete || typeof this.naturalWidth == "undefined" || this.naturalWidth == 0) {
this.src = 'https://farm9.staticflickr.com/8761/16569952974_0bd09610e9_o.png'; } });// NOTE: insert url to your generic book image here
});
</script>
<script type="text/javascript">
// Replace images that fail to load with a default image
// idea from University of SouthHampton LibGuides http://library.soton.ac.uk/home/subjects
// Wait until all images have loaded or failed to load due to an error
$(window).load(function() {
// replace images in a content box that are not book covers with image same color as background
$('.s-lib-box-content img').not(".s-lg-book-cover img").each(function() {
if (!this.complete || typeof this.naturalWidth == "undefined" || this.naturalWidth == 0) {
this.src = 'http://lgimages.s3.amazonaws.com/data/imagemanager/109212/library-placeholder-liguides.jpg'; } });// NOTE: insert url to your generic image here
});
</script>