Hello, I have a list
<ul id="list">
<li>list1</li>
<li>list2</li>
<li>list3</li>
</ul>
and text box
<input type="text" name="textfield" id="tb" value="" />
When i click a button, all the list items should be in the textbox like this
list1 list2 list3
I want to do this in jquery. Please help me.