My Blog
  • About
  • Stay
    • The Laneway Hostel
    • The Wooden Gate
  • Eat & Drink
    • Chookie’s Beer Garden
      • Menu
    • The Coop by Chookie’s
      • Menu The Coop
    • Sunset Bar
    • Xả ớt Noodle Bar
  • Explore
  • Contact
  • Blog
Select Page

Hello world!

by admin | Apr 20, 2026 | Uncategorized

Welcome to WordPress. This is your first post. Edit or delete it, then start writing!

Recent Posts

  • The Best Way to Get to Ninh Binh
  • Hello world!

Recent Comments

  1. A WordPress Commenter on Hello world!
  • Facebook
  • Instagram
Booking Now

MAKE A BOOKING

×






document.querySelectorAll(‘.ct-tab’).forEach(tab=>{

tab.addEventListener(‘click’, function(){

document.querySelectorAll(‘.ct-tab’).forEach(t=>{
t.classList.remove(‘active’);
});

document.querySelectorAll(‘.ct-tab-content’).forEach(c=>{
c.classList.remove(‘active’);
});

this.classList.add(‘active’);

document.getElementById(this.dataset.tab)
.classList.add(‘active’);

});

});

document.querySelectorAll(‘.ct-counter’).forEach(counter=>{

const input = counter.querySelector(‘input’);

counter.querySelector(‘.plus’).addEventListener(‘click’, ()=>{

input.value = parseInt(input.value) + 1;

});

counter.querySelector(‘.minus’).addEventListener(‘click’, ()=>{

if(input.value > 1){
input.value = parseInt(input.value) – 1;
}

});

});