Read more
// This JavaScript code is used to add new posts and comments to the social media website.
function addPost() {
var post = prompt("Enter your post:");
if (post !== null) {
var posts = document.getElementById("posts");
var li = document.createElement("li");
li.innerHTML = post;
posts.appendChild(li);
}
}
function addComment() {
var comment = prompt("Enter your comment:");
if (comment !== null) {
var comments = document.getElementById("comments");
var li = document.createElement("li");
li.innerHTML = comment;
comments.appendChild(li);
}
}
body {
font-family: sans-serif;
background-color: #ffffff;
}
h1 {
font-size: 2em;
text-align: center;
}
h2 {
font-size: 1.5em;
margin-top: 20px;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
li {
margin-bottom: 10px;
}
// This JavaScript code is used to add new posts and comments to the social media website.
function addPost() {
var post = prompt("Enter your post:");
if (post !== null) {
var posts = document.getElementById("posts");
var li = document.createElement("li");
li.innerHTML = post;
posts.appendChild(li);
}
}
function addComment() {
var comment = prompt("Enter your comment:");
if (comment !== null) {
var comments = document.getElementById("comments");
var li = document.createElement("li");
li.innerHTML = comment;
comments.appendChild(li);
}
}




0 Reviews