How to Set Maxlength for Textarea in Javascript?
Today, i was planing to post something like regarding to javascript. I was thinking what post should i add and i plan to make maxlength validation with display remaining character count using javascript. So you can simply make character limit with remaining counter in javascript.
Here, i am going to make very simple example to do this, you don't require to import jquery. You have to just write following javascript code. So I used onkeyup and onkeydown event of code javascript.
It would be easy to use using onkeydown and onkeyup event and make it character count validation in html. So let's just see bellow example and copy that code. You will get fresh example.
Example:
<!DOCTYPE html>
<html>
<head>
<title>How to set maxlength for textarea in javascript?</title>
</head>
<body>
<div class="container">
<form>
<textarea name="message" placeholder="Write Here..." onkeydown="limitTextOnKeyUpDown(this.form.message,this.form.countdown,160);" onkeyup='limitTextOnKeyUpDown(this.form.message,this.form.countdown,160);'></textarea>
You have
<input readonly type="text" name="countdown" size="3" value="160"> chars are left
</form>
</div>
<script type="text/javascript">
function limitTextOnKeyUpDown(limitField, limitCount, limitNum) {
if (limitField.value.length > limitNum) {
limitField.value = limitField.value.substring(0, limitNum);
} else {
limitCount.value = limitNum - limitField.value.length;
}
}
</script>
</body>
</html>
I hope it can help you....
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- How to Convert Object to String in Javascript?
- Javascript Convert Array into Comma Separated String Example
- How to Check Array Is Empty Or Null In Javascript?
- How to Generate Random String in Javascript?
- How to Get First Element of Array in Javascript?
- How to Get Last Element of Array in Javascript?
- How to Get Max Attribute Value in JQuery?
- How to Remove Query String from URL using JQuery?
- Automatically Scroll to Bottom of Div JQuery Example
- Check and Uncheck All Checkbox using JQuery Example
- How to Allow Only One Checkbox Checked at a Time in JQuery?
- How to Convert Line Breaks to br in jQuery ?
- How to Check Object is Empty or Not in JQuery?
- Autocomplete with Images and Custom HTML Code in Jquery UI?