Input can't get focus
When you have an input field inside of a div that is draggable, the input can no longer obtain focus on a phone/tablet.
http://jsfiddle.net/jbrL8hn7/9/
To test, you have to use your, ya know, phone or tablet.
I have experienced the same. I have had to disable drag on these divs.
This is a longtime known issue apparently (see #109 for a solution). I integrated this and #196 fix into one version, see this repo here if you need.
Awesome. I downloaded from your repo and it works fine. Thanks a bunch.
@nobitagit Thanks, your repo works great!
One solution is to use a handle. Add an icon inside <li><span class="move"></span><input...../></li> and use this to drag. Then the inputs work fine.
$("#sortableList").sortable({
handle: ".move"
});
Awesome, you saved my day dude. Spent almost the whole day to find out this issue.