Created
June 21, 2023 16:52
-
-
Save pale2hall/a83a7d67e95b31a180ef95a38602889d to your computer and use it in GitHub Desktop.
Open OWL Carousel Images in Tabs Bookmarklet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(function() {const owlItems = document.querySelectorAll('.owl-carousel .owl-item .carousel-item a');owlItems.forEach(item => { const onclickString = item.getAttribute('onclick'); const imageURL = onclickString.match(/window\.open\('(.+?)%27\)/)[1]; window.open(imageURL, %27_blank%27);});})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment