Hi,
In a textarea I want to limit the number of characters to be 358. After 358 characters the user shouls not be able to type. Also, the initial value in a textarea should be '**' and the user should start writing after these 2 characters. So then the characters the user can type will be 356+"**". How do i do this??
Someone told me to use <input type=textarea maxlength=358 value="**">
But this does not work. It just shows a single text field. I want a textarea to be seen.
In a textarea I want to limit the number of characters to be 358. After 358 characters the user shouls not be able to type. Also, the initial value in a textarea should be '**' and the user should start writing after these 2 characters. So then the characters the user can type will be 356+"**". How do i do this??
Someone told me to use <input type=textarea maxlength=358 value="**">
But this does not work. It just shows a single text field. I want a textarea to be seen.