/** This is a collection of javascript functions and whatnot under the spree namespace that do stuff we find helpful. Hopefully, this will evolve into a propper class. **/ var spree; if (!spree) spree = {}; jQuery.noConflict() jQuery(document).ajaxStart(function(){ jQuery("#progress").slideDown(); }); jQuery(document).ajaxStop(function(){ jQuery("#progress").slideUp(); });