diff --git a/themes/bootstrap3/js/advanced_search.js b/themes/bootstrap3/js/advanced_search.js
index d363c6ae3ee74ec2da31cc441fb1cbf11cde7d03..04e927a877204da731f8aa0e2ffe6405cb28aec7 100644
--- a/themes/bootstrap3/js/advanced_search.js
+++ b/themes/bootstrap3/js/advanced_search.js
@@ -119,8 +119,8 @@ function deleteGroup(group) {
   }
 }
 
-$(document).ready(function() {
-  $('.clear-btn').click(function() {
+$(document).ready(function advSearchReady() {
+  $('.clear-btn').click(function clearBtnClick() {
     $('input[type="text"]').val('');
     $("option:selected").removeAttr("selected");
     $("#illustrated_-1").click();
diff --git a/themes/bootstrap3/js/autocomplete.js b/themes/bootstrap3/js/autocomplete.js
index 4c97afcbbc7499023d27a42e57c3279cf9a181b1..dd1f8e6380ee24484269a06be806b517ab895fca 100644
--- a/themes/bootstrap3/js/autocomplete.js
+++ b/themes/bootstrap3/js/autocomplete.js
@@ -3,7 +3,7 @@
  * crhallberg/autocomplete.js 0.15
  * ~ @crhallberg
  */
-(function ( $ ) {
+(function autocomplete( $ ) {
   var cache = {},
     element = false,
     input = false,
@@ -79,9 +79,9 @@
       shell.append(item);
     }
     element.html(shell);
-    element.find('.item').mousedown(function() {
+    element.find('.item').mousedown(function acItemClick() {
       populate($(this).data(), input, {mouse: true});
-      setTimeout(function() {
+      setTimeout(function acClickDelay() {
         input.focus();
         hide();
       }, 10);
@@ -104,7 +104,7 @@
           createList(cache[cid][term], input);
         }
       } else {
-        options.handler(input, function(data) {
+        options.handler(input, function achandlerCallback(data) {
           cache[cid][term] = data;
           if (data.length === 0) {
             hide();
@@ -137,20 +137,20 @@
       cache[cid] = {};
     }
 
-    input.blur(function(e) {
+    input.blur(function acinputBlur(e) {
       if (e.target.acitem) {
         setTimeout(hide, 10);
       } else {
         hide();
       }
     });
-    input.click(function() {
+    input.click(function acinputClick() {
       search(input, element);
     });
-    input.focus(function() {
+    input.focus(function acinputFocus() {
       search(input, element);
     });
-    input.keyup(function(event) {
+    input.keyup(function acinputKeyup(event) {
       // Ignore navigation keys
       // - Ignore control functions
       if (event.ctrlKey || event.which === 17) {
@@ -183,7 +183,7 @@
         search(input, element);
       }
     });
-    input.keydown(function(event) {
+    input.keydown(function acinputKeydown(event) {
       // - Ignore control functions
       if (event.ctrlKey || event.which === 17) {
         return;
@@ -238,10 +238,9 @@
     return element;
   }
 
-  $.fn.autocomplete = function(settings) {
+  $.fn.autocomplete = function acJQuery(settings) {
 
-
-    return this.each(function() {
+    return this.each(function acJQueryEach() {
 
       input = $(this);
 
@@ -275,11 +274,11 @@
   };
 
   var timer = false;
-  $.fn.autocomplete.ajax = function(ops) {
+  $.fn.autocomplete.ajax = function acAjax(ops) {
     if (timer) { clearTimeout(timer); }
     if (xhr) { xhr.abort(); }
     timer = setTimeout(
-      function() { xhr = $.ajax(ops); },
+      function acajaxDelay() { xhr = $.ajax(ops); },
       options.ajaxDelay
     );
   };
diff --git a/themes/bootstrap3/js/cart.js b/themes/bootstrap3/js/cart.js
index 52b4d839ab86a0192b05d3a6d85e677b91c844c8..26a32202c807b42562c0a742259189b280874db2 100644
--- a/themes/bootstrap3/js/cart.js
+++ b/themes/bootstrap3/js/cart.js
@@ -1,16 +1,16 @@
 /*global Cookies, VuFind */
 
-VuFind.register('cart', function() {
+VuFind.register('cart', function Cart() {
   var _COOKIE = 'vufind_cart';
   var _COOKIE_SOURCES = 'vufind_cart_src';
   var _COOKIE_DELIM = "\t";
   var _COOKIE_DOMAIN = false;
 
-  var setDomain = function(domain) {
+  function setDomain(domain) {
     _COOKIE_DOMAIN = domain;
-  };
+  }
 
-  var _uniqueArray = function(op) {
+  function _uniqueArray(op) {
     var ret = [];
     for (var i = 0; i < op.length; i++) {
       if (ret.indexOf(op[i]) < 0) {
@@ -18,23 +18,23 @@ VuFind.register('cart', function() {
       }
     }
     return ret;
-  };
+  }
 
-  var _getItems = function() {
+  function _getItems() {
     var items = Cookies.getItem(_COOKIE);
     if (items) {
       return items.split(_COOKIE_DELIM);
     }
     return [];
-  };
-  var _getSources = function() {
+  }
+  function _getSources() {
     var items = Cookies.getItem(_COOKIE_SOURCES);
     if (items) {
       return items.split(_COOKIE_DELIM);
     }
     return [];
-  };
-  var getFullItems = function() {
+  }
+  function getFullItems() {
     var items = _getItems();
     var sources = _getSources();
     var full = [];
@@ -45,14 +45,14 @@ VuFind.register('cart', function() {
       full[full.length] = sources[items[i].charCodeAt(0) - 65] + '|' + items[i].substr(1);
     }
     return full;
-  };
+  }
 
-  var updateCount = function() {
+  function updateCount() {
     var items = _getItems();
     $('#cartItems strong').html(items.length);
-  };
+  }
 
-  var addItem = function(id,source) {
+  function addItem(id,source) {
     if (!source) {
       source = VuFind.defaultSearchBackend;
     }
@@ -70,8 +70,8 @@ VuFind.register('cart', function() {
     Cookies.setItem(_COOKIE, $.unique(cartItems).join(_COOKIE_DELIM), false, '/', _COOKIE_DOMAIN);
     updateCount();
     return true;
-  };
-  var removeItem = function(id,source) {
+  }
+  function removeItem(id,source) {
     var cartItems = _getItems();
     var cartSources = _getSources();
     // Find
@@ -113,23 +113,23 @@ VuFind.register('cart', function() {
       return true;
     }
     return false;
-  };
+  }
 
   var _cartNotificationTimeout = false;
-  var _registerUpdate = function($form) {
+  function _registerUpdate($form) {
     if ($form) {
-      $("#updateCart, #bottom_updateCart").unbind('click').click(function(){
+      $("#updateCart, #bottom_updateCart").unbind('click').click(function cartUpdate(){
         var elId = this.id;
         var selectedBoxes = $("input[name='ids[]']:checked", $form);
         var selected = [];
-        $(selectedBoxes).each(function(i) {
+        $(selectedBoxes).each(function cartCheckboxValues(i) {
           selected[i] = this.value;
         });
         if (selected.length > 0) {
           var inCart = 0;
           var msg = "";
           var orig = getFullItems();
-          $(selected).each(function(i) {
+          $(selected).each(function cartCheckedItemsAdd(i) {
             for (var x in orig) {
               if (this == orig[x]) {
                 inCart++;
@@ -157,29 +157,29 @@ VuFind.register('cart', function() {
         if (_cartNotificationTimeout !== false) {
           clearTimeout(_cartNotificationTimeout);
         }
-        _cartNotificationTimeout = setTimeout(function() {
+        _cartNotificationTimeout = setTimeout(function notificationHide() {
           $('#' + elId).popover('hide');
         }, 5000);
         return false;
       });
     }
-  };
+  }
 
-  var init = function() {
+  function init() {
     // Record buttons
     var $cartId = $('.cartId');
     if ($cartId.length > 0) {
-      $cartId.each(function() {
+      $cartId.each(function cartIdEach() {
         var cartId = this.value.split('|');
         var currentId = cartId[1];
         var currentSource = cartId[0];
         var $parent = $(this).parent();
         $parent.find('.cart-add.correct,.cart-remove.correct').removeClass('correct hidden');
-        $parent.find('.cart-add').click(function() {
+        $parent.find('.cart-add').click(function cartAddClick() {
           addItem(currentId,currentSource);
           $parent.find('.cart-add,.cart-remove').toggleClass('hidden');
         });
-        $parent.find('.cart-remove').click(function() {
+        $parent.find('.cart-remove').click(function cartRemoveClick() {
           removeItem(currentId,currentSource);
           $parent.find('.cart-add,.cart-remove').toggleClass('hidden');
         });
@@ -190,7 +190,7 @@ VuFind.register('cart', function() {
       _registerUpdate($form);
     }
     $("#updateCart, #bottom_updateCart").popover({content:'', html:true, trigger:'manual'});
-  };
+  }
 
   // Reveal
   return {
@@ -207,7 +207,7 @@ VuFind.register('cart', function() {
 
 // Building an array and checking indexes prevents a race situation
 // We want to prioritize empty over printing
-var cartFormHandler = function(event, data) {
+function cartFormHandler(event, data) {
   var keys = [];
   for (var i in data) {
     keys.push(data[i].name);
@@ -218,6 +218,6 @@ var cartFormHandler = function(event, data) {
   if (keys.indexOf('print') > -1) {
     return true;
   }
-};
+}
 
 document.addEventListener('VuFind.lightbox.closed', VuFind.cart.updateCount, false);
diff --git a/themes/bootstrap3/js/check_item_statuses.js b/themes/bootstrap3/js/check_item_statuses.js
index fd8ab281f9b0e46f15472baa21f6b80d557e24b3..50ffa14ba87290c6de38a954a01be0746bcfd151 100644
--- a/themes/bootstrap3/js/check_item_statuses.js
+++ b/themes/bootstrap3/js/check_item_statuses.js
@@ -6,7 +6,7 @@ function checkItemStatuses(container) {
   }
 
   var elements = {};
-  var data = $.map(container.find('.ajaxItem'), function(record) {
+  var data = $.map(container.find('.ajaxItem'), function ajaxItemMap(record) {
     if ($(record).find('.hiddenId').length == 0) {
       return null;
     }
@@ -28,8 +28,8 @@ function checkItemStatuses(container) {
     url: VuFind.path + '/AJAX/JSON?method=getItemStatuses',
     data: {'id':data}
   })
-  .done(function(response) {
-    $.each(response.data, function(i, result) {
+  .done(function checkItemStatusDone(response) {
+    $.each(response.data, function checkItemDoneEach(i, result) {
       var item = elements[result.id];
       if (!item) {
         return;
@@ -95,7 +95,7 @@ function checkItemStatuses(container) {
 
     $(".ajax-availability").removeClass('ajax-availability');
   })
-  .fail(function(response, textStatus) {
+  .fail(function checkItemStatusFail(response, textStatus) {
     $('.ajax-availability').empty();
     if (textStatus == 'abort' || typeof response.responseJSON === 'undefined') { return; }
     // display the error message on each of the ajax status place holder
@@ -103,6 +103,6 @@ function checkItemStatuses(container) {
   });
 }
 
-$(document).ready(function() {
+$(document).ready(function checkItemStatusReady() {
   checkItemStatuses();
 });
diff --git a/themes/bootstrap3/js/check_save_statuses.js b/themes/bootstrap3/js/check_save_statuses.js
index 7e663d16d86f09166f8a8df637c8b1ebe93084b7..b033f1c3dd31e74e6d050c06b50e95267fa4a7c5 100644
--- a/themes/bootstrap3/js/check_save_statuses.js
+++ b/themes/bootstrap3/js/check_save_statuses.js
@@ -9,7 +9,7 @@ function checkSaveStatuses(container) {
   }
 
   var elements = {};
-  var data = $.map(container.find('.result,.record'), function(record) {
+  var data = $.map(container.find('.result,.record'), function checkSaveRecordMap(record) {
     if ($(record).find('.hiddenId').length == 0 || $(record).find('.hiddenSource').length == 0) {
       return null;
     }
@@ -34,7 +34,7 @@ function checkSaveStatuses(container) {
       url: VuFind.path + '/AJAX/JSON?method=getSaveStatuses',
       data: {'id':ids, 'source':srcs}
     })
-    .done(function(response) {
+    .done(function checkSaveStatusDone(response) {
       for (var sel in response.data) {
         var list = elements[sel];
         if (!list) {
@@ -52,6 +52,6 @@ function checkSaveStatuses(container) {
   }
 }
 
-$(document).ready(function() {
+$(document).ready(function checkSaveStatusFail() {
   checkSaveStatuses();
 });
diff --git a/themes/bootstrap3/js/collection_record.js b/themes/bootstrap3/js/collection_record.js
index a953842acd452dbc8302f0cf21c920e445e2d042..e7616b788eeff3c764b07195521b1d0cd2f18386 100644
--- a/themes/bootstrap3/js/collection_record.js
+++ b/themes/bootstrap3/js/collection_record.js
@@ -9,12 +9,12 @@ function showMoreInfoToggle() {
   }
   toggleCollectionInfo();
   $("#moreInfoToggle").removeClass('hidden');
-  $("#moreInfoToggle").click(function(e) {
+  $("#moreInfoToggle").click(function moreInfoToggleClick(e) {
     e.preventDefault();
     toggleCollectionInfo();
   });
 }
 
-$(document).ready(function() {
+$(document).ready(function collectionRecordReady() {
   showMoreInfoToggle();
 });
\ No newline at end of file
diff --git a/themes/bootstrap3/js/combined-search.js b/themes/bootstrap3/js/combined-search.js
index 3477225688bc1b73be98cf8c6d03e669d223b371..80af508679fef237a2fa6c4056e2cf34ec2d6ea4 100644
--- a/themes/bootstrap3/js/combined-search.js
+++ b/themes/bootstrap3/js/combined-search.js
@@ -1,7 +1,7 @@
 /*global VuFind, checkItemStatuses, checkSaveStatuses */
-VuFind.combinedSearch = (function() {
-  var init = function(container, url) {
-    container.load(url, '', function(responseText) {
+VuFind.combinedSearch = (function CombinedSearch() {
+  var init = function init(container, url) {
+    container.load(url, '', function containerLoad(responseText) {
       if (responseText.length == 0) {
         container.hide();
       } else {
@@ -11,7 +11,7 @@ VuFind.combinedSearch = (function() {
       }
     });
   };
-  
+
   var my = {
     init: init
   };
diff --git a/themes/bootstrap3/js/common.js b/themes/bootstrap3/js/common.js
index 1ed03ead2238ca8ea040cd5bc43da38c139e9088..6c7ab8287e933a89592e72d219c56449dc649716 100644
--- a/themes/bootstrap3/js/common.js
+++ b/themes/bootstrap3/js/common.js
@@ -1,16 +1,16 @@
 /*global btoa, console, hexEncode, isPhoneNumberValid, Lightbox, rc4Encrypt, unescape */
 
 // IE 9< console polyfill
-window.console = window.console || {log: function () {}};
+window.console = window.console || {log: function polyfillLog() {}};
 
-var VuFind = (function() {
+var VuFind = (function VuFind() {
   var defaultSearchBackend = null;
   var path = null;
   var _initialized = false;
   var _submodules = [];
   var _translations = {};
 
-  var register = function(name, module) {
+  var register = function register(name, module) {
     if (_submodules.indexOf(name) === -1) {
       _submodules.push(name);
       this[name] = typeof module == 'function' ? module() : module;
@@ -20,7 +20,7 @@ var VuFind = (function() {
       this[name].init();
     }
   };
-  var init = function() {
+  var init = function init() {
     for (var i = 0; i < _submodules.length; i++) {
       if (this[_submodules[i]].init) {
         this[_submodules[i]].init();
@@ -29,12 +29,12 @@ var VuFind = (function() {
     _initialized = true;
   };
 
-  var addTranslations = function(s) {
+  var addTranslations = function addTranslations(s) {
     for (var i in s) {
       _translations[i] = s[i];
     }
   };
-  var translate = function(op) {
+  var translate = function translate(op) {
     return _translations[op] || op;
   };
 
@@ -147,7 +147,7 @@ function bulkFormHandler(event, data) {
 // Ready functions
 function setupOffcanvas() {
   if ($('.sidebar').length > 0) {
-    $('[data-toggle="offcanvas"]').click(function () {
+    $('[data-toggle="offcanvas"]').click(function offcanvasClick() {
       $('body.offcanvas').toggleClass('active');
       var active = $('body.offcanvas').hasClass('active');
       var right = $('body.offcanvas').hasClass('offcanvas-right');
@@ -166,15 +166,15 @@ function setupOffcanvas() {
 
 function setupAutocomplete() {
   // Search autocomplete
-  $('.autocomplete').each(function(i, op) {
+  $('.autocomplete').each(function autocompleteSetup(i, op) {
     $(op).autocomplete({
       maxResults: 10,
       loadingString: VuFind.translate('loading') + '...',
-      handler: function(input, cb) {
+      handler: function vufindACHandler(input, cb) {
         var query = input.val();
         var searcher = extractClassParams(input);
         var hiddenFilters = [];
-        $(input).closest('.searchForm').find('input[name="hiddenFilters[]"]').each(function() {
+        $(input).closest('.searchForm').find('input[name="hiddenFilters[]"]').each(function hiddenFiltersEach() {
           hiddenFilters.push($(this).val());
         });
         $.fn.autocomplete.ajax({
@@ -187,7 +187,7 @@ function setupAutocomplete() {
             hiddenFilters:hiddenFilters
           },
           dataType:'json',
-          success: function(json) {
+          success: function autocompleteJSON(json) {
             if (json.data.length > 0) {
               var datums = [];
               for (var i = 0; i < json.data.length; i++) {
@@ -203,7 +203,7 @@ function setupAutocomplete() {
     });
   });
   // Update autocomplete on type change
-  $('.searchForm_type').change(function() {
+  $('.searchForm_type').change(function searchTypeChange() {
     var $lookfor = $(this).closest('.searchForm').find('.searchForm_lookfor[name]');
     $lookfor.autocomplete('clear cache');
   });
@@ -216,7 +216,7 @@ function setupAutocomplete() {
 function keyboardShortcuts() {
   var $searchform = $('.searchForm_lookfor');
   if ($('.pager').length > 0) {
-    $(window).keydown(function(e) {
+    $(window).keydown(function shortcutKeyDown(e) {
       if (!$searchform.is(':focus')) {
         var $target = null;
         switch (e.keyCode) {
@@ -251,7 +251,7 @@ function keyboardShortcuts() {
   }
 }
 
-$(document).ready(function() {
+$(document).ready(function commonDocReady() {
   // Start up all of our submodules
   VuFind.init();
   // Setup search autocomplete
@@ -262,18 +262,18 @@ $(document).ready(function() {
   keyboardShortcuts();
 
   // support "jump menu" dropdown boxes
-  $('select.jumpMenu').change(function(){ $(this).parent('form').submit(); });
+  $('select.jumpMenu').change(function jumpMenu(){ $(this).parent('form').submit(); });
 
   // Checkbox select all
-  $('.checkbox-select-all').change(function() {
+  $('.checkbox-select-all').change(function selectAllCheckboxes() {
     $(this).closest('form').find('.checkbox-select-item').prop('checked', this.checked);
   });
-  $('.checkbox-select-item').change(function() {
+  $('.checkbox-select-item').change(function selectAllDisable() {
     $(this).closest('form').find('.checkbox-select-all').prop('checked', false);
   });
 
   // handle QR code links
-  $('a.qrcodeLink').click(function() {
+  $('a.qrcodeLink').click(function qrcodeToggle() {
     if ($(this).hasClass("active")) {
       $(this).html(VuFind.translate('qrcode_show')).removeClass("active");
     } else {
@@ -294,7 +294,7 @@ $(document).ready(function() {
   var url = window.location.href;
   if (url.indexOf('?' + 'print' + '=') != -1 || url.indexOf('&' + 'print' + '=') != -1) {
     $("link[media='print']").attr("media", "all");
-    $(document).ajaxStop(function() {
+    $(document).ajaxStop(function triggerPrint() {
       window.print();
     });
     // Make an ajax call to ensure that ajaxStop is triggered
@@ -302,7 +302,7 @@ $(document).ready(function() {
   }
 
   // Advanced facets
-  $('.facetOR').click(function() {
+  $('.facetOR').click(function facetBlocking() {
     $(this).closest('.collapse').html('<div class="list-group-item">' + VuFind.translate('loading') + '...</div>');
     window.location.assign($(this).attr('href'));
   });
diff --git a/themes/bootstrap3/js/embedded_record.js b/themes/bootstrap3/js/embedded_record.js
index d1b4e109c193c5016cee92576dcbf6973a9ee0d4..b11ed7642e52ac5b9256257ec13b44b8138c4e88 100644
--- a/themes/bootstrap3/js/embedded_record.js
+++ b/themes/bootstrap3/js/embedded_record.js
@@ -1,11 +1,11 @@
 /* global checkSaveStatuses, sessionStorage, registerAjaxCommentRecord, registerTabEvents, setupRecordToolbar, syn_get_widget, VuFind */
-VuFind.register('embedded', function() {
+VuFind.register('embedded', function embedded() {
   var _STORAGEKEY = 'vufind_search_open';
   var _SEPERATOR = ':::';
   var _DELIM = ',';
   var _STATUS = {};
 
-  var saveStatusToStorage = function saveStatusToStorage() {
+  function saveStatusToStorage() {
     var storage = [];
     var str;
     for (str in _STATUS) {
@@ -17,17 +17,17 @@ VuFind.register('embedded', function() {
       }
     }
     sessionStorage.setItem(_STORAGEKEY, $.unique(storage).join(_DELIM));
-  };
-  var addToStorage = function addToStorage(id, tab) {
+  }
+  function addToStorage(id, tab) {
     _STATUS[id] = tab;
     saveStatusToStorage();
-  };
-  var removeFromStorage = function removeFromStorage(id) {
+  }
+  function removeFromStorage(id) {
     if (delete _STATUS[id]) {
       saveStatusToStorage();
     }
-  };
-  var loadStorage = function loadStorage() {
+  }
+  function loadStorage() {
     var storage = sessionStorage.getItem(_STORAGEKEY);
     if (!storage) {
       return;
@@ -62,9 +62,9 @@ VuFind.register('embedded', function() {
     for (i = 0; i < doomed.length; i++) {
       removeFromStorage(doomed[i]);
     }
-  };
+  }
 
-  var ajaxLoadTab = function ajaxLoadTab(tabid, _click) {
+  function ajaxLoadTab(tabid, _click) {
     var click = _click || false;
     var $tab = $('#' + tabid);
     console.log($tab);
@@ -113,9 +113,9 @@ VuFind.register('embedded', function() {
       $tab.click();
     }
     return true;
-  };
+  }
 
-  var toggleDataView = function toggleDataView(_link, tabid) {
+  function toggleDataView(_link, tabid) {
     var $link = $(_link);
     var viewType = $link.attr('data-view');
     // If full, return true
@@ -137,10 +137,10 @@ VuFind.register('embedded', function() {
                 + VuFind.translate('loading') + '...</div>')
         .before(longNode);
       $link.addClass('js-setup');
-      longNode.on('show.bs.collapse', function() {
+      longNode.on('show.bs.collapse', function embeddedExpand() {
         $link.addClass('expanded');
       });
-      longNode.on('hidden.bs.collapse', function() {
+      longNode.on('hidden.bs.collapse', function embeddedCollapsed() {
         $link.removeClass('expanded');
       });
     }
@@ -219,10 +219,10 @@ VuFind.register('embedded', function() {
     return false;
   }
 
-  var init = function init() {
+  function init() {
     $('.getFull').click(function linkToggle() { return toggleDataView(this); });
     loadStorage();
-  };
+  }
 
   return { init: init };
 });
diff --git a/themes/bootstrap3/js/facets.js b/themes/bootstrap3/js/facets.js
index 89874b8c1c3c64d2a07d79944005e78003f216b7..e94f9c047ed0baf1ce0b062923008a13860f5c0e 100644
--- a/themes/bootstrap3/js/facets.js
+++ b/themes/bootstrap3/js/facets.js
@@ -3,7 +3,7 @@ function buildFacetNodes(data, currentPath, allowExclude, excludeTitle, counts)
 {
   var json = [];
 
-  $(data).each(function() {
+  $(data).each(function facetNodesEach() {
     var html = '';
     if (!this.isApplied && counts) {
       html = '<span class="badge" style="float: right">' + this.count.toString().replace(/\B(?=(\d{3})+\b)/g, VuFind.translate('number_thousands_separator'));
@@ -79,12 +79,12 @@ function initFacetTree(treeNode, inSidebar)
       facetSort: sort,
       facetOperator: operator
     },
-    function(response, textStatus) {
+    function getFacetData(response, textStatus) {
       if (response.status == "OK") {
         var results = buildFacetNodes(response.data, currentPath, allowExclude, excludeTitle, inSidebar);
         treeNode.find('.fa-spinner').parent().remove();
         if (inSidebar) {
-          treeNode.on('loaded.jstree open_node.jstree', function (e, data) {
+          treeNode.on('loaded.jstree open_node.jstree', function treeNodeOpen(e, data) {
             treeNode.find('ul.jstree-container-ul > li.jstree-node').addClass('list-group-item');
           });
         }
@@ -102,7 +102,7 @@ function initFacetTree(treeNode, inSidebar)
 VuFind.register('lightbox_facets', function LightboxFacets() {
   var ajaxUrl;
 
-  var lightboxFacetSorting = function lightboxFacetSorting() {
+  function lightboxFacetSorting() {
     var sortButtons = $('.js-facet-sort');
     var lastsort, lastlimit;
     function sortAjax(sort) {
@@ -124,9 +124,9 @@ VuFind.register('lightbox_facets', function LightboxFacets() {
       $(this).addClass('active');
       return false;
     });
-  };
+  }
 
-  var setup = function setup(url) {
+  function setup(url) {
     ajaxUrl = url;
     lightboxFacetSorting();
     $('.js-facet-next-page').click(function facetLightboxMore() {
@@ -159,7 +159,7 @@ VuFind.register('lightbox_facets', function LightboxFacets() {
     $(window).resize(function facetListResize() {
       $('#modal .lightbox-scroll').css('max-height', window.innerHeight - margin);
     });
-  };
+  }
 
   return { setup: setup };
 });
diff --git a/themes/bootstrap3/js/hierarchyTree.js b/themes/bootstrap3/js/hierarchyTree.js
index 02c43a06f6a9b0f21de79e65b8291c9b3ebc4bfb..6210a5f6f6a99ed15b2f2b955bf46b05e96da8af 100644
--- a/themes/bootstrap3/js/hierarchyTree.js
+++ b/themes/bootstrap3/js/hierarchyTree.js
@@ -29,7 +29,7 @@ function getRecord(recordID) {
     url: VuFind.path + '/Hierarchy/GetRecord?' + $.param({id: recordID}),
     dataType: 'html'
   })
-  .done(function(response) {
+  .done(function getRecordDone(response) {
     $('#hierarchyRecord').html(html_entity_decode(response));
     // Remove the old path highlighting
     $('#hierarchyTree a').removeClass("jstree-highlight");
@@ -78,7 +78,7 @@ function doTreeSearch() {
         'type': $("#treeSearchType").val()
       }) + "&format=true"
     })
-    .done(function(data) {
+    .done(function searchTreeAjaxDone(data) {
       if (data.results.length > 0) {
         $('#hierarchyTree').find('.jstree-search').removeClass('jstree-search');
         var tree = $('#hierarchyTree').jstree(true);
@@ -103,7 +103,7 @@ function doTreeSearch() {
 
 function buildJSONNodes(xml) {
   var jsonNode = [];
-  $(xml).children('item').each(function() {
+  $(xml).children('item').each(function xmlTreeChildren() {
     var content = $(this).children('content');
     var id = content.children("name[class='JSTreeID']");
     var name = content.children('name[href]');
@@ -134,13 +134,13 @@ function buildTreeWithXml(cb) {
       'mode': 'Tree'
     }
   })
-  .done(function(xml) {
+  .done(function getTreeDone(xml) {
     var nodes = buildJSONNodes($(xml).find('root'));
     cb.call(this, nodes);
   });
 }
 
-$(document).ready(function() {
+$(document).ready(function hierarchyTreeReady() {
   // Code for the search button
   hierarchyID = $("#hierarchyTree").find(".hiddenHierarchyId")[0].value;
   recordID = $("#hierarchyTree").find(".hiddenRecordId")[0].value;
@@ -150,7 +150,7 @@ $(document).ready(function() {
   $("#hierarchyLoading").removeClass('hide');
 
   $("#hierarchyTree")
-    .bind("ready.jstree", function (event, data) {
+    .bind("ready.jstree", function jsTreeReady(event, data) {
       $("#hierarchyLoading").addClass('hide');
       var tree = $("#hierarchyTree").jstree(true);
       tree.select_node(htmlID);
@@ -160,7 +160,7 @@ $(document).ready(function() {
         getRecord(recordID);
       }
 
-      $("#hierarchyTree").bind('select_node.jstree', function(e, data) {
+      $("#hierarchyTree").bind('select_node.jstree', function jsTreeSelect(e, data) {
         if (hierarchyContext == "Record") {
           window.location.href = data.node.a_attr.href;
         } else {
@@ -186,7 +186,7 @@ $(document).ready(function() {
     .jstree({
       'plugins': ['search','types'],
       'core' : {
-        'data' : function (obj, cb) {
+        'data' : function jsTreeCoreData(obj, cb) {
           $.ajax({
             'url': VuFind.path + '/Hierarchy/GetTreeJSON',
             'data': {
@@ -194,13 +194,13 @@ $(document).ready(function() {
               'id': recordID
             },
             'statusCode': {
-              200: function(json, status, request) {
+              200: function jsTree200Status(json, status, request) {
                 cb.call(this, json);
               },
-              204: function(json, status, request) { // No Content
+              204: function jsTree204Status(json, status, request) { // No Content
                 buildTreeWithXml(cb);
               },
-              503: function(json, status, request) { // Service Unavailable
+              503: function jsTree503Status(json, status, request) { // Service Unavailable
                 buildTreeWithXml(cb);
               }
             }
@@ -219,7 +219,7 @@ $(document).ready(function() {
 
   $('#treeSearch').removeClass('hidden');
   $('#treeSearch [type=submit]').click(doTreeSearch);
-  $('#treeSearchText').keyup(function (e) {
+  $('#treeSearchText').keyup(function treeSearchKeyup(e) {
     var code = (e.keyCode ? e.keyCode : e.which);
     if (code == 13 || $(this).val().length == 0) {
       doTreeSearch();
diff --git a/themes/bootstrap3/js/hold.js b/themes/bootstrap3/js/hold.js
index 1df01fcef9e9d0964963827730c64813ccac7561..d300bc43e503f82a8c9476aecba3b4816be19673 100644
--- a/themes/bootstrap3/js/hold.js
+++ b/themes/bootstrap3/js/hold.js
@@ -1,6 +1,6 @@
 /*global VuFind */
 function setUpHoldRequestForm(recordId) {
-  $('#requestGroupId').change(function() {
+  $('#requestGroupId').change(function requestGroupChange() {
     var $emptyOption = $("#pickUpLocation option[value='']");
     $("#pickUpLocation option[value!='']").remove();
     if ($('#requestGroupId').val() === '') {
@@ -19,9 +19,9 @@ function setUpHoldRequestForm(recordId) {
       cache: false,
       url: VuFind.path + '/AJAX/JSON'
     })
-    .done(function(response) {
+    .done(function holdPickupLocationsDone(response) {
       var defaultValue = $('#pickUpLocation').data('default');
-      $.each(response.data.locations, function() {
+      $.each(response.data.locations, function holdPickupLocationEach() {
         var option = $('<option></option>').attr('value', this.locationID).text(this.locationDisplay);
         if (this.locationID == defaultValue || (defaultValue == '' && this.isDefault && $emptyOption.length == 0)) {
           option.attr('selected', 'selected');
@@ -32,7 +32,7 @@ function setUpHoldRequestForm(recordId) {
       $('#pickUpLocationLabel i').removeClass("fa fa-spinner icon-spin");
       $('#pickUpLocation').removeAttr('disabled');
     })
-    .fail(function(response) {
+    .fail(function holdPickupLocationsFail(response) {
       $('#pickUpLocationLabel i').removeClass("fa fa-spinner icon-spin");
       $('#pickUpLocation').removeAttr('disabled');
     });
diff --git a/themes/bootstrap3/js/ill.js b/themes/bootstrap3/js/ill.js
index 7b67942cac583570c8d8a242b2e700b701edb0f1..76de720b4f738e74a62a05b236a40dc39f1dd9e5 100644
--- a/themes/bootstrap3/js/ill.js
+++ b/themes/bootstrap3/js/ill.js
@@ -1,6 +1,6 @@
 /*global VuFind */
 function setUpILLRequestForm(recordId) {
-  $("#ILLRequestForm #pickupLibrary").change(function() {
+  $("#ILLRequestForm #pickupLibrary").change(function illPickupChange() {
     $("#ILLRequestForm #pickupLibraryLocation option").remove();
     $("#ILLRequestForm #pickupLibraryLocationLabel i").addClass("fa fa-spinner icon-spin");
     var url = VuFind.path + '/AJAX/JSON?' + $.param({
@@ -13,8 +13,8 @@ function setUpILLRequestForm(recordId) {
       cache: false,
       url: url
     })
-    .done(function(response) {
-      $.each(response.data.locations, function() {
+    .done(function illPickupLocationsDone(response) {
+      $.each(response.data.locations, function illPickupLocationEach() {
         var option = $("<option></option>").attr("value", this.id).text(this.name);
         if (this.isDefault) {
           option.attr("selected", "selected");
@@ -23,7 +23,7 @@ function setUpILLRequestForm(recordId) {
       });
       $("#ILLRequestForm #pickupLibraryLocationLabel i").removeClass("fa fa-spinner icon-spin");
     })
-    .fail(function(response) {
+    .fail(function illPickupLocationsFail(response) {
       $("#ILLRequestForm #pickupLibraryLocationLabel i").removeClass("fa fa-spinner icon-spin");
     });
   });
diff --git a/themes/bootstrap3/js/keep_alive.js b/themes/bootstrap3/js/keep_alive.js
index 7df79b51986210405d627d7bab6b0a70de0f2fe1..65a7e252f16c52d36e67a6ab825fb0960bb7f33b 100644
--- a/themes/bootstrap3/js/keep_alive.js
+++ b/themes/bootstrap3/js/keep_alive.js
@@ -1,7 +1,7 @@
 /*global keepAliveInterval, VuFind */
 
-$(document).ready(function() {
-  window.setInterval(function() {
+$(document).ready(function keepAliveReady() {
+  window.setInterval(function keepAliveInterval() {
     $.getJSON(VuFind.path + '/AJAX/JSON', {method: 'keepAlive'});
   }, keepAliveInterval * 1000);
 });
diff --git a/themes/bootstrap3/js/lightbox.js b/themes/bootstrap3/js/lightbox.js
index 24d282b9f586a88640703f3861da61f842751ffc..88f90ff9f4b90d929573c7031b3d41faaf7ee158 100644
--- a/themes/bootstrap3/js/lightbox.js
+++ b/themes/bootstrap3/js/lightbox.js
@@ -1,5 +1,5 @@
 /*global $, document, CustomEvent, VuFind, window */
-VuFind.register('lightbox', function() {
+VuFind.register('lightbox', function Lightbox() {
   // State
   var _originalUrl = false;
   var _currentUrl = false;
@@ -8,10 +8,10 @@ VuFind.register('lightbox', function() {
   // Elements
   var _modal, _modalBody, _clickedButton = null;
   // Utilities
-  var _storeClickedStatus = function() {
+  function storeClickedStatus() {
     _clickedButton = this;
-  };
-  var _html = function(html) {
+  }
+  function html(html) {
     _modalBody.html(html);
     // Set or update title if we have one
     if (_lightboxTitle != '') {
@@ -23,8 +23,8 @@ VuFind.register('lightbox', function() {
       _lightboxTitle = '';
     }
     _modal.modal('handleUpdate');
-  };
-  var _emit = function(msg, details) {
+  }
+  function emit(msg, details) {
     if ('undefined' == typeof details) {
       details = {};
     }
@@ -41,12 +41,12 @@ VuFind.register('lightbox', function() {
       event.initCustomEvent(msg, true, true, details);
     }
     return document.dispatchEvent(event);
-  };
+  }
 
   /**
    * Reload the page without causing trouble with POST parameters while keeping hash
    */
-  var _refreshPage = function() {
+  function refreshPage() {
     var parts = window.location.href.split('#');
     if (typeof parts[1] === 'undefined') {
       window.location.href = window.location.href;
@@ -57,21 +57,21 @@ VuFind.register('lightbox', function() {
       href += new Date().getTime() + '#' + parts[1];
       window.location.href = href;
     }
-  };
+  }
   // Public: Present an alert
-  var showAlert = function(message, type) {
+  function showAlert(message, type) {
     if ('undefined' == typeof type) {
       type = 'info';
     }
     _html('<div class="flash-message alert alert-' + type + '">' + message + '</div>'
         + '<button class="btn btn-default" data-dismiss="modal">' + VuFind.translate('close') + '</button>');
     _modal.modal('show');
-  };
-  var flashMessage = function(message, type) {
+  }
+  function flashMessage(message, type) {
     _modalBody.find('.flash-message,.fa.fa-spinner').remove();
     _modalBody.find('h2:first-of-type')
       .after('<div class="flash-message alert alert-' + type + '">' + message + '</div>');
-  };
+  }
 
   /**
    * Update content
@@ -80,7 +80,7 @@ VuFind.register('lightbox', function() {
    *
    * data-lightbox-ignore = do not submit this form in lightbox
    */
-  var _update = function(html) {
+  function update(html) {
     if (!html.match) {
       return;
     }
@@ -110,17 +110,17 @@ VuFind.register('lightbox', function() {
       $(forms[i]).on('submit', _formSubmit);
     }
     // Select all checkboxes
-    $('#modal').find('.checkbox-select-all').change(function() {
+    $('#modal').find('.checkbox-select-all').change(function lbSelectAllCheckboxes() {
       $(this).closest('.modal-body').find('.checkbox-select-item').prop('checked', this.checked);
     });
-    $('#modal').find('.checkbox-select-item').change(function() {
+    $('#modal').find('.checkbox-select-item').change(function lbSelectAllDisable() {
       $(this).closest('.modal-body').find('.checkbox-select-all').prop('checked', false);
     });
-  };
+  }
 
   var _xhr = false;
   // Public: Handle AJAX in the Lightbox
-  var ajax = function(obj) {
+  function ajax(obj) {
     if (_xhr !== false) {
       return;
     }
@@ -137,8 +137,8 @@ VuFind.register('lightbox', function() {
       obj.url += parts.length < 2 ? '' : '#' + parts[1];
     }
     _xhr = $.ajax(obj);
-    _xhr.always(function() { _xhr = false; })
-      .done(function(html, status, jq_xhr) {
+    _xhr.always(function lbAjaxAlways() { _xhr = false; })
+      .done(function lbAjaxDone(html, status, jq_xhr) {
         if (jq_xhr.status == 205) {
           _refreshPage();
           return;
@@ -174,25 +174,25 @@ VuFind.register('lightbox', function() {
         }
         _update(html);
       })
-      .fail(function() {
+      .fail(function lbAjaxFail() {
         showAlert(VuFind.translate('error_occurred'), 'danger');
       });
     return _xhr;
-  };
-  var reload = function() {
+  }
+  function reload() {
     ajax({url:_currentUrl || _originalUrl});
-  };
+  }
 
   /**
    * Evaluate a callback
    */
-  var _evalCallback = function(callback, event, data) {
+  function evalCallback(callback, event, data) {
     if ('function' === typeof window[callback]) {
       return window[callback](event, data);
     } else {
       return eval('(function(event, data) {' + callback + '}())'); // inline code
     }
-  };
+  }
 
   /**
    * Modal link data options
@@ -202,7 +202,7 @@ VuFind.register('lightbox', function() {
    * data-lightbox-post = post data
    * data-lightbox-title = Lightbox title (overrides any title the page provides)
    */
-  var _constrainLink = function(event) {
+  function constrainLink(event) {
     if (typeof $(this).data('lightboxIgnore') != 'undefined' || this.attributes.href.value.charAt(0) === '#') {
       return true;
     }
@@ -219,7 +219,7 @@ VuFind.register('lightbox', function() {
       VuFind.modal('show');
       return false;
     }
-  };
+  }
 
   /**
    * Handle form submission.
@@ -234,7 +234,7 @@ VuFind.register('lightbox', function() {
    *
    * data-lightbox-ignore = do not handle clicking this button in lightbox
    */
-  var _formSubmit = function(event) {
+  function formSubmit(event) {
     // Gather data
     var form = event.target;
     var data = $(form).serializeArray();
@@ -263,7 +263,7 @@ VuFind.register('lightbox', function() {
     }
     // onclose behavior
     if ('string' === typeof $(form).data('lightboxOnclose')) {
-      document.addEventListener('VuFind.lightbox.closed', function(event) {
+      document.addEventListener('VuFind.lightbox.closed', function lightboxClosed(event) {
         _evalCallback($(form).data('lightboxOnclose'), event);
       }, false);
     }
@@ -284,10 +284,10 @@ VuFind.register('lightbox', function() {
 
     VuFind.modal('show');
     return false;
-  };
+  }
 
   // Public: Attach listeners to the page
-  var bind = function(target) {
+  function bind(target) {
     if ('undefined' === typeof target) {
       target = document;
     }
@@ -302,31 +302,31 @@ VuFind.register('lightbox', function() {
     // information about which button was clicked here as checking focused button
     // doesn't work on all browsers and platforms.
     $('form[data-lightbox] [type=submit]').click(_storeClickedStatus);
-  };
+  }
 
-  var reset = function() {
+  function reset() {
     _html(VuFind.translate('loading') + '...');
     _originalUrl = false;
     _currentUrl = false;
     _lightboxTitle = '';
-  };
-  var init = function() {
+  }
+  function init() {
     _modal = $('#modal');
     _modalBody = _modal.find('.modal-body');
-    _modal.on('hide.bs.modal', function() {
+    _modal.on('hide.bs.modal', function lightboxHide() {
       if (VuFind.lightbox.refreshOnClose) {
         _refreshPage();
       }
       _emit('VuFind.lightbox.closing');
     });
-    _modal.on('hidden.bs.modal', function() {
+    _modal.on('hidden.bs.modal', function lightboxHidden() {
       VuFind.lightbox.reset();
       _emit('VuFind.lightbox.closed');
     });
 
-    VuFind.modal = function(cmd) { _modal.modal(cmd); };
+    VuFind.modal = function modalShortcut(cmd) { _modal.modal(cmd); };
     bind();
-  };
+  }
 
   // Reveal
   return {
diff --git a/themes/bootstrap3/js/openurl.js b/themes/bootstrap3/js/openurl.js
index 16a707844e365581c6e34555fcdb85a250c71997..ef35356fa7ae26309579ae7bc0bfa2ca5bd39684 100644
--- a/themes/bootstrap3/js/openurl.js
+++ b/themes/bootstrap3/js/openurl.js
@@ -1,23 +1,23 @@
 /*global extractClassParams, VuFind */
-VuFind.register('openurl', function() {
-  var _loadResolverLinks = function($target, openUrl, searchClassId) {
+VuFind.register('openurl', function OpenUrl() {
+  function loadResolverLinks($target, openUrl, searchClassId) {
     $target.addClass('ajax_availability');
     var url = VuFind.path + '/AJAX/JSON?' + $.param({method:'getResolverLinks',openurl:openUrl,searchClassId:searchClassId});
     $.ajax({
       dataType: 'json',
       url: url
     })
-    .done(function(response) {
+    .done(function getResolverLinksDone(response) {
       $target.removeClass('ajax_availability').empty().append(response.data);
     })
-    .fail(function(response, textStatus) {
+    .fail(function getResolverLinksFail(response, textStatus) {
       $target.removeClass('ajax_availability').addClass('text-danger').empty();
       if (textStatus == 'abort' || typeof response.responseJSON === 'undefined') { return; }
       $target.append(response.responseJSON.data);
     });
-  };
+  }
 
-  var embedOpenUrlLinks = function(element) {
+  function embedOpenUrlLinks(element) {
     // Extract the OpenURL associated with the clicked element:
     var openUrl = element.children('span.openUrl:first').attr('title');
 
@@ -33,18 +33,17 @@ VuFind.register('openurl', function() {
     if (target.hasClass('hidden')) {
       _loadResolverLinks(target.removeClass('hidden'), openUrl, element.data('search-class-id'));
     }
-  };
+  }
 
-  // Assign actions to the OpenURL links. This can be called with a container e.g. when 
+  // Assign actions to the OpenURL links. This can be called with a container e.g. when
   // combined results fetched with AJAX are loaded.
-  var init = function(container)
-  {
+  function init(container) {
     if (typeof(container) == 'undefined') {
       container = $('body');
     }
 
      // assign action to the openUrlWindow link class
-    container.find('a.openUrlWindow').unbind('click').click(function() {
+    container.find('a.openUrlWindow').unbind('click').click(function openUrlWindowClick() {
       var params = extractClassParams(this);
       var settings = params.window_settings;
       window.open($(this).attr('href'), 'openurl', settings);
@@ -52,13 +51,13 @@ VuFind.register('openurl', function() {
     });
 
     // assign action to the openUrlEmbed link class
-    container.find('.openUrlEmbed a').unbind('click').click(function() {
+    container.find('.openUrlEmbed a').unbind('click').click(function openUrlEmbedClick() {
       embedOpenUrlLinks($(this));
       return false;
     });
 
     container.find('.openUrlEmbed.openUrlEmbedAutoLoad a').trigger('click');
-  };
+  }
   return {
     init: init,
     embedOpenUrlLinks: embedOpenUrlLinks
diff --git a/themes/bootstrap3/js/preview.js b/themes/bootstrap3/js/preview.js
index 74a21a7373e6cc240c7499939687b32db3104bd3..c467b250f53ed001a02d6a9fb936b3ea0a8360a4 100644
--- a/themes/bootstrap3/js/preview.js
+++ b/themes/bootstrap3/js/preview.js
@@ -100,7 +100,7 @@ function processHTBookInfo(booksInfo) {
  * developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/Array/indexOf
  */
 function setIndexOf() {
-  Array.prototype.indexOf = function (searchElement /*, fromIndex */ ) {
+  Array.prototype.indexOf = function indexOfPolyfill(searchElement /*, fromIndex */ ) {
     "use strict";
     if (this == null) {
       throw new TypeError();
@@ -136,7 +136,7 @@ function setIndexOf() {
 
 function getBibKeyString() {
   var skeys = '';
-  $('.previewBibkeys').each(function(){
+  $('.previewBibkeys').each(function previewBibkeysEach(){
     skeys += $(this).attr('class');
   });
   return skeys.replace(/previewBibkeys/g, '').replace(/^\s+|\s+$/g, '');
@@ -185,7 +185,7 @@ function getBookPreviews() {
   }
 }
 
-$(document).ready(function() {
+$(document).ready(function previewDocReady() {
   if (!Array.prototype.indexOf) {
     setIndexOf();
   }
diff --git a/themes/bootstrap3/js/pubdate_vis.js b/themes/bootstrap3/js/pubdate_vis.js
index c7d3ff5fa86dff6fbbd44dca3397495417580aef..bb150253d1b47b52d47ccba19eeb5055436e178e 100644
--- a/themes/bootstrap3/js/pubdate_vis.js
+++ b/themes/bootstrap3/js/pubdate_vis.js
@@ -53,8 +53,8 @@ function loadVis(facetFields, searchParams, baseURL, zooming) {
 
   // AJAX call
   var url = baseURL + '/AJAX/json?method=getVisData&facetFields=' + encodeURIComponent(facetFields) + '&' + searchParams;
-  $.getJSON(url, function (data) {
-    $.each(data['data'], function(key, val) {
+  $.getJSON(url, function getVisDataJSON(data) {
+    $.each(data['data'], function getVisDataEach(key, val) {
       //check if there is data to display, if there isn't hide the box
       if (val['data'] == undefined || val['data'].length == 0) {
         return;
@@ -113,7 +113,7 @@ function loadVis(facetFields, searchParams, baseURL, zooming) {
         plot.setSelection({ x1: val['min'] , x2: val['max']});
       }
       // selection handler
-      placeholder.bind("plotselected", function (event, ranges) {
+      placeholder.bind("plotselected", function plotselected(event, ranges) {
         var from = Math.floor(ranges.xaxis.from);
         var to = Math.ceil(ranges.xaxis.to);
         location.href = val['removalURL'] + '&daterange[]=' + key + '&' + key + 'to=' + PadDigits(to,4) + '&' + key + 'from=' + PadDigits(from,4);
diff --git a/themes/bootstrap3/js/record.js b/themes/bootstrap3/js/record.js
index f8e9cdb734a673e5b03aa9cbf12803998356177a..e1c187ae38a4c6c279c097cb7e428b2c2fa219a1 100644
--- a/themes/bootstrap3/js/record.js
+++ b/themes/bootstrap3/js/record.js
@@ -14,7 +14,7 @@ function checkRequestIsValid(element, requestType) {
     cache: false,
     url: url
   })
-  .done(function(response) {
+  .done(function checkValidDone(response) {
     if (response.data.status) {
       $(element).removeClass('disabled')
         .attr('title', response.data.msg)
@@ -23,19 +23,19 @@ function checkRequestIsValid(element, requestType) {
       $(element).remove();
     }
   })
-  .fail(function(response) {
+  .fail(function checkValidFail(response) {
     $(element).remove();
   });
 }
 
 function setUpCheckRequest() {
-  $('.checkRequest').each(function(i) {
+  $('.checkRequest').each(function checkRequest(i) {
     checkRequestIsValid(this, 'Hold');
   });
-  $('.checkStorageRetrievalRequest').each(function(i) {
+  $('.checkStorageRetrievalRequest').each(function checkStorageRetrievalRequest(i) {
     checkRequestIsValid(this, 'StorageRetrievalRequest');
   });
-  $('.checkILLRequest').each(function(i) {
+  $('.checkILLRequest').each(function checkILLRequest(i) {
     checkRequestIsValid(this, 'ILLRequest');
   });
 }
@@ -46,7 +46,7 @@ function deleteRecordComment(element, recordId, recordSource, commentId) {
     dataType: 'json',
     url: url
   })
-  .done(function(response) {
+  .done(function deleteCommentDone(response) {
     $($(element).closest('.comment')[0]).remove();
   });
 }
@@ -57,12 +57,12 @@ function refreshCommentList($target, recordId, recordSource) {
     dataType: 'json',
     url: url
   })
-  .done(function(response) {
+  .done(function refreshCommentListDone(response) {
     // Update HTML
     var $commentList = $target.find('.comment-list');
     $commentList.empty();
     $commentList.append(response.data);
-    $commentList.find('.delete').unbind('click').click(function() {
+    $commentList.find('.delete').unbind('click').click(function commentRefreshDeleteClick() {
       var commentId = $(this).attr('id').substr('recordComment'.length);
       deleteRecordComment(this, recordId, recordSource, commentId);
       return false;
@@ -73,7 +73,7 @@ function refreshCommentList($target, recordId, recordSource) {
 
 function registerAjaxCommentRecord() {
   // Form submission
-  $('form.comment-form').unbind('submit').submit(function() {
+  $('form.comment-form').unbind('submit').submit(function commentFormSubmit() {
     var form = this;
     var id = form.id.value;
     var recordSource = form.source.value;
@@ -89,20 +89,20 @@ function registerAjaxCommentRecord() {
       data: data,
       dataType: 'json'
     })
-    .done(function(response) {
+    .done(function addCommentDone(response) {
       var $tab = $(form).closest('.tab-pane');
       refreshCommentList($tab, id, recordSource);
       $(form).find('textarea[name="comment"]').val('');
       $(form).find('input[type="submit"]').button('loading');
     })
-    .fail(function(response, textStatus) {
+    .fail(function addCommentFail(response, textStatus) {
       if (textStatus == 'abort' || typeof response.responseJSON === 'undefined') { return; }
       VuFind.lightbox.update(response.responseJSON.data);
     });
     return false;
   });
   // Delete links
-  $('.delete').click(function() {
+  $('.delete').click(function commentDeleteClick() {
     var commentId = this.id.substr('recordComment'.length);
     deleteRecordComment(this, $('.hiddenId').val(), $('.hiddenSource').val(), commentId);
     return false;
@@ -115,7 +115,10 @@ function registerTabEvents() {
   // Logged in AJAX
   registerAjaxCommentRecord();
   // Delete links
-  $('.delete').click(function(){ deleteRecordComment(this, $('.hiddenId').val(), $('.hiddenSource').val(), this.id.substr(13)); return false; });
+  $('.delete').click(function commentTabDeleteClick() {
+    deleteRecordComment(this, $('.hiddenId').val(), $('.hiddenSource').val(), this.id.substr(13));
+    return false;
+  });
 
   setUpCheckRequest();
 
@@ -145,7 +148,7 @@ function ajaxLoadTab($newTab, tabid, setHash) {
     type: 'POST',
     data: {tab: tabid}
   })
-  .done(function(data) {
+  .done(function ajaxLoadTabDone(data) {
     $newTab.html(data);
     registerTabEvents();
     if (typeof syn_get_widget === "function") {
@@ -172,7 +175,7 @@ function refreshTagList(target, loggedin) {
       dataType: 'html',
       url: url
     })
-    .done(function(response) {
+    .done(function getRecordTagsDone(response) {
       $tagList.empty();
       $tagList.replaceWith(response);
       if (loggedin) {
@@ -204,7 +207,7 @@ function ajaxTagUpdate(link, tag, remove) {
       remove:remove
     }
   })
-  .always(function() {
+  .always(function tagRecordAlways() {
     refreshTagList($target, false);
   });
 }
@@ -226,7 +229,7 @@ function applyRecordTabHash() {
 $(window).on('hashchange', applyRecordTabHash);
 
 function recordDocReady() {
-  $('.record-tabs .nav-tabs a').click(function (e) {
+  $('.record-tabs .nav-tabs a').click(function recordTabsClick(e) {
     var $li = $(this).parent();
     // If it's an active tab, click again to follow to a shareable link.
     if ($li.hasClass('active')) {