how to set limit of words in input type text
<input type="text"title="likethis()"maxlength="200"placeholder="This will allow only 200 words">
how to set limit of words in input type text
<input type="text"title="likethis()"maxlength="200"placeholder="This will allow only 200 words">
limit number of values in a twxt input
<script language="javascript" type="text/javascript">
function limitText(limitField, limitNum) {
if (limitField.value.length > limitNum) {
limitField.value = limitField.value.substring(0, limitNum);
}
}
</script>
<input type="text" id="sessionNo" name="sessionNum" onKeyDown="limitText(this,5);"
onKeyUp="limitText(this,5);"" />
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us