Skip to content

Instantly share code, notes, and snippets.

@d-0-0I
d-0-0I / script.js
Created November 11, 2020 10:53
Custom lightbox and infinite scrolling for Squarespace Jasper theme
<script>
// GALLERY //
function setUpImages() {
const imageSelector = ".thumb-image";
$.fancybox.defaults.hash = false;
//wrap anchor tags around large images and add fancybox class
$(imageSelector).wrap(`<a class="fancybox" style="display:block"></a>`);
$(imageSelector).parent().attr("href", $(this).data('src'));
$(imageSelector).parent().attr("class", "fancybox");
$(imageSelector).attr("data-fancybox", "gallery");