Guys I've HTML file that Consists of 2 DIV tags and a Submit Button,Looks like as follows
<div id="menu">
<a href="#">Textbox</a>
</div>
<div id="Container">
<!-- this is Dynamic area -->
</div>
<input type="Submit" name="submit">
What i want is, if i drag a link (Textbox) from menu DIV to Container DIV i need a Textbox to be Created in container DIV dynamically.. and Later i need to Get Textbox values from Submit button, Is there any idea or source about how to achive this using Jquery?