I am using jQuery UI draggable to drag elements but it does not seem to work on textarea and inputs as they are focused whenever I click on them. Here is a JSbin De
Looks like I have found solution to this problem after some googling. Posting it here to help others. Two steps needed:
{ cancel: '' }Here is working JSBin Demo
HTML
I am a DIV. Try to move me
JS
$('.movable').draggable({
cancel: ''
});