javascript - how to remove <textarea> whitespace -


i want <textarea>, 1 i'm writing in right actually.

how make textarea behave one? want start @ beginning , not give me whitespace erase when clicking in middle of it.

html

      <p>         <textarea class="notetoadd">          </textarea>       </p> 

any ideas?

that between start tag <textarea> , end tag </textarea> it's value. whitespace seen 'value'. have this: (note whitespace)

<textarea>                </textarea>

so, remove that, remove whitespace , place start , ending tag directly after each other.

<textarea></textarea>


Comments

Popular posts from this blog

android - Why am I getting the message 'Youractivity.java is not an activity subclass or alias' -

python - How do I create a list index that loops through integers in another list -

c# - “System.Security.Cryptography.CryptographicException: Keyset does not exist” when reading private key from remote machine -