I have Asp.net text box in < div> tag which after click on \"btnReply\",< div> showes by Jquery Dialog, so user write idea at text box and click \"Send\" button (jquer
Use hidden field value to store the textbox value
var Des = $("#txtDesc").val(); $("#hid").val(Des);
hid is the id of hidden field.