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

sql - VB.NET Operand type clash: date is incompatible with int error -

SVG stroke-linecap doesn't work for circles in Firefox? -

python - TypeError: Scalar value for argument 'color' is not numeric in openCV -