Your can simply use maxlength attribute and put the value to 100
<textarea class="form-control" id="text" wrap="off" maxlength=100
placeholder="Autodelete the text here if value exceed more than 100!">
</textarea>
If that does't work then -
You first need to add javascript function in which the length of textarea value is being calculated after that when the value becomes > 100 disable the textarea so that the user can't add more.
document.getElementById('text').onkeyup = function () {
console.log('text', this.value.length)
if (this.value.length > 100) {
alert('Limit exceeded to '+this.value.length)
this.disabled = true;
}
};
<div class="form-group">
<textarea class="form-control" id="text" wrap="off"
placeholder="Autodelete the text here if value exceed more than 100!">
</textarea>
</div>
There is a dark side of this code that if the user is spamming continously the if condition won't be triggered. When the user stops after long press the textarea will get disabled.