I created a text box and appended it to my div:
$('<input />').appendTo("#box")
I would like to get the value inputted from the user.
I would also like to remove the text box too. I tried this:
$('<input />').remove();
but no luck. Any ideas? Thanks a lot.