i want to use fiexd text area with 500 characters is that possible and can use paragraph wise input in text area
text area limitation
Collapse
X
-
hi where is the problem its not work
Code:<script language = "javascript"> var txtarea = document.getElementsByTagName("textarea")[0]; var len = txtarea.length; if(len>500){ textarea.value = textarea.value.subString(0,500); } function brvoice() { window.location = "brvoice.asp" } function voice() { window.location = "voice.asp" } </script> <td align='left'><textarea name="textarea" cols="50" rows="10"></textarea></td>Comment
-
hi i am try to this but no insertion has been done
Code:<script language = "javascript"> function counttxt() { var txtarea = document.getElementsByTagName("textarea")[0]; var len = txtarea.length; if(len>500) { textarea.value = textarea.value.subString(0,500); } } </script> <td align='left'><textarea name="counttxt" cols="50" rows="10" onKeyPress="counttxt()"></textarea></td>Comment
Comment