I am new jQuery, play with it. I would like a text box when I click the button, but this does not work.
<input type=text id=txt></input>
<input type=button id=btn value="Click Me"></input>
$document.ready(function() {
$("input#btn").click(function() {
$("input#txt").hide();
});
});
source
share