Your Funny Stories
Parenting isn't about being Perfect. In fact, some of the best Stories are when things haven't quite gone to plan!

Your funny stories
Often, Parents feel pressured into pretending that they raise their Children in a Textbook Fashion. But guess what? It’s those Whoopsies that unite us!
// Get the vote buttons and the vote count element
const voteButtons = document.querySelectorAll('.vote-button');
const voteCount = document.querySelector('.vote-count');
// Set the initial vote count to zero
let count = 0;
// Add event listeners to the vote buttons
voteButtons.forEach(button => {
button.addEventListener('click', () => {
// Get the vote type (up or down)
const voteType = button.dataset.vote;
// Update the count based on the vote type
if (voteType === 'up') {
count++;
} else {
count--;
}
// Update the vote count element
voteCount.textContent = count;
});
});
0
0
Share this
// Get the vote buttons and the vote count element
const voteButtons = document.querySelectorAll('.vote-button');
const voteCount = document.querySelector('.vote-count');
// Set the initial vote count to zero
let count = 0;
// Add event listeners to the vote buttons
voteButtons.forEach(button => {
button.addEventListener('click', () => {
// Get the vote type (up or down)
const voteType = button.dataset.vote;
// Update the count based on the vote type
if (voteType === 'up') {
count++;
} else {
count--;
}
// Update the vote count element
voteCount.textContent = count;
});
});
0
0
Share this
// Get the vote buttons and the vote count element
const voteButtons = document.querySelectorAll('.vote-button');
const voteCount = document.querySelector('.vote-count');
// Set the initial vote count to zero
let count = 0;
// Add event listeners to the vote buttons
voteButtons.forEach(button => {
button.addEventListener('click', () => {
// Get the vote type (up or down)
const voteType = button.dataset.vote;
// Update the count based on the vote type
if (voteType === 'up') {
count++;
} else {
count--;
}
// Update the vote count element
voteCount.textContent = count;
});
});
0
0
Share this
// Get the vote buttons and the vote count element
const voteButtons = document.querySelectorAll('.vote-button');
const voteCount = document.querySelector('.vote-count');
// Set the initial vote count to zero
let count = 0;
// Add event listeners to the vote buttons
voteButtons.forEach(button => {
button.addEventListener('click', () => {
// Get the vote type (up or down)
const voteType = button.dataset.vote;
// Update the count based on the vote type
if (voteType === 'up') {
count++;
} else {
count--;
}
// Update the vote count element
voteCount.textContent = count;
});
});
0
0
Share this
// Get the vote buttons and the vote count element
const voteButtons = document.querySelectorAll('.vote-button');
const voteCount = document.querySelector('.vote-count');
// Set the initial vote count to zero
let count = 0;
// Add event listeners to the vote buttons
voteButtons.forEach(button => {
button.addEventListener('click', () => {
// Get the vote type (up or down)
const voteType = button.dataset.vote;
// Update the count based on the vote type
if (voteType === 'up') {
count++;
} else {
count--;
}
// Update the vote count element
voteCount.textContent = count;
});
});
0
0
Share this
// Get the vote buttons and the vote count element
const voteButtons = document.querySelectorAll('.vote-button');
const voteCount = document.querySelector('.vote-count');
// Set the initial vote count to zero
let count = 0;
// Add event listeners to the vote buttons
voteButtons.forEach(button => {
button.addEventListener('click', () => {
// Get the vote type (up or down)
const voteType = button.dataset.vote;
// Update the count based on the vote type
if (voteType === 'up') {
count++;
} else {
count--;
}
// Update the vote count element
voteCount.textContent = count;
});
});
0
0
Share this

We Need Your Stories!
Have you suffered an unfortunate ‘Code Brown’? Fed your Baby something you shouldn’t have? Has your Baby ‘Flipped the Bird’ to a random Stranger?
Share it with us!