Weekend Studios
Coming soon.
document.addEventListener('DOMContentLoaded', function() {
document.querySelectorAll('img.bts-image').forEach(img => {
const altText = img.getAttribute('alt');
if (altText) {
const caption = document.createElement('div');
caption.className = 'image-caption';
caption.textContent = altText;
img.insertAdjacentElement('afterend', caption);
}
});
});