I will show you Fiddle link about my program question.
<label for="test">Username:</label>
<input type="text" id="test">
<p id=""></p>
$("#test").onclick(function(){
alert('xx');
})
I want to realize this function:
p tag real-time displays input tag's content when I input something. I'll be very happy if you answer me.
Thank you.