I am using JQuery and want to move a textbox.As in drag it using the draggable function and also make it droppable() so as to drop few properties onto it. I am not able to make
Input elements are note draggable by default, because it will not know if you want to drag the textbox or just put the focus on it.
It is the default cancel option for input elements, but you can override it
$("#yourTextBox").draggable({ cancel: null });