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 the textbox draggable neither droppable ? It only becomes possible when I surround the textbox with a Div. Why is it so? What is the correct way of implementing both the above functions with textbox?
Share
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