Skip to Main Content

CALI - How to Do Everything With LibGuides: Javascript Changes

Images Fails

image that fails to load example

Javascript File

Javascript

Javascript may be entered between script tags

 <script type="text/javascript" >
    CONTENT ALTERATION HERE
    SECOND ALTERATION HERE
</script>

Load Generic Book Image if Custom Does not Load

<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>

JS to Load Generic Image if Image Does not Load

<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>

University of Georgia Law LibraryUniversity of Georgia  |  Non-Discrimination Policy  |  Privacy Policy  | Contact Site Administrator 
225 Herty Drive Athens, GA 30602-6012 | (706) 542-5077 | University of Georgia School of Law.  All rights reserved.