15

All Inclusive

7 Nights / 8 Days

Was $950

Now $850

This is the short text. It will be visible initially.
This is the long text. It will be revealed when the ‘Read More’ button is clicked. Here you can place the extended content that you want to hide initially.
document.addEventListener('DOMContentLoaded', function() { var readMoreButton = document.getElementById('read-more-btn'); var longText = document.getElementById('long-text'); if (readMoreButton && longText) { readMoreButton.addEventListener('click', function() { longText.classList.toggle('visible'); this.innerText = longText.classList.contains('visible') ? 'Read Less' : 'Read More'; }); } else { console.error('Read More button or long text container not found.'); } });