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' -

Making Empty C++ Project: General exception (Exception from HRESULT:0x80131500) Visual Studio Community 2015 -

How to fix java warning for "The value of the local variable is not used " -