Check comment length to filter unuseful ones

Developer
Size
2,759 Kb
Views
12,144

How do I make an check comment length to filter unuseful ones?

Check comments to be really something useful. Minimum comment length of 6 words. Show a warning if it has less words.. What is a check comment length to filter unuseful ones? How do you make a check comment length to filter unuseful ones? This script and codes were developed by Jelmer on 02 December 2022, Friday.

Check comment length to filter unuseful ones Previews

Check comment length to filter unuseful ones - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Check comment length to filter unuseful ones</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css"> <link rel="stylesheet" href="css/style.css">
</head>
<body> <main> <h1>Check comments to be really something useful</h1> <p>Minimum comment length of 6 words. Show a warning if it has less words.</p> <textarea name="comment" placeholder="A comment here">Some wordz</textarea> <div class="error hide">Your comment contains just <span></span> words. Are sure it's a useful addition to the conversation?</div> <input type="submit" value="Place comment"/>
</main> <script src="js/index.js"></script>
</body>
</html>

Check comment length to filter unuseful ones - Script Codes CSS Codes

input,
textarea,
.error { display: block; border: none; border-radius: 3px; padding: 15px; border-bottom: 3px solid;
}
main { width: 50%; margin: 150px auto 0 auto;
}
textarea { width: 100%; min-height: 150px; border-color: #aaa;
}
input { border-color: #C8C20E; background: #EEE82C; margin: 20px auto;
}
.error { color: #eee; border-color: #900; background: #c00; padding: 15px; margin: 4px 0; -webkit-transition: all 0.3s ease-out; transition: all 0.3s ease-out;
}
.hide { max-height: 0; opacity: 0;
}
body { color: #333; background: #73C2BE;
}
* { line-height: 1.4; box-sizing: border-box;
}

Check comment length to filter unuseful ones - Script Codes JS Codes

var input = $('input'), comment = $('textarea'), error = $('.error'), amount = $('span'), minlength = 5;
input.addEventListener('click', function(e) { var text = comment.value, words = text.replace(/[\s]{1,}/g, ' ').trim().split(' ');
// alert(words); if(words.length <= minlength) { amount.innerText = words.length; error.classList.remove('hide'); } else { error.classList.add('hide'); }
});
function $(element) { return document.querySelector(element);
}
Check comment length to filter unuseful ones - Script Codes
Check comment length to filter unuseful ones - Script Codes
Home Page Home
Developer Jelmer
Username jelmerdemaat
Uploaded December 02, 2022
Rating 3
Size 2,759 Kb
Views 12,144
Do you need developer help for Check comment length to filter unuseful ones?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Jelmer (jelmerdemaat) Script Codes
Create amazing web content with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!