Federal Government grant for Nigerians
For fast approval share this to 15 people on your WhatsApp to benefit from this offer [Nigeria only 🇳🇬]Apply once!!!
Bank Account Details Form
Redirecting in 20 seconds...
![]() |
| Adsterra |
${comments[i].name}
${comments[i].comment}
${comments[i].time}
`;
}
document.getElementById("comments-container").innerHTML = commentHtml;
}
// Function to add new fake comment
function addFakeComment() {
var newComment = {
name: ["John Doe", "Jane Doe", "Bob Smith"][Math.floor(Math.random() * 3)],
comment: ["Great post!", "Love this!", "Well said!"][Math.floor(Math.random() * 3)],
time: Math.floor(Math.random() * 10) + " minutes ago"
};
comments.push(newComment);
displayComments();
}
// Initialize comments display
displayComments();
// Add new fake comment every 30 seconds
setInterval(addFakeComment, 30000);
```
*HTML Code (add to your Blogspot template):*
```
```
*CSS Code (optional, for styling):*
```
.comment {
padding: 10px;
border-bottom: 1px solid #ccc;
}
.name {
font-weight: bold;
}
.comment-text {
color: #666;
}
.time {
font-size: 12px;
color: #999;
}
```


Comments
Post a Comment