I want to make a simple jQuery script which will do the following:
- I have HTML-code with
<p>tag and<textarea>for user to type in. - User types text in
<textarea>-> jQuery inserts it in<p>(class="youtyped") tag in HTML-code.
HTML-code:
<p class="youtyped"></p>
<textarea>Please type your text here</textarea>
Example of use: User typed "Hello" in textarea, HTML-code will look like:
<p class="youtyped">Hello</p>
Thanks in advance :)