Rooms
Restaurant
RESTAURANT The Coop Beer Garden Sunset Bar
DATE
TIME 18:00 18:30 19:00 19:30 20:00
BOOK TABLE
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;
}
});
});
Hi, this is a comment.
To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
Commenter avatars come from Gravatar.