I have this fiddle : http://jsfiddle.net/vdbb7c6n/
Click on Go then drag a number on the left or right of a big line ! On first drop, it jumps to the middle of the div whereas it should not.
the css used for those draggable is :
.dollar, .diese {
display: inline-block;
width: 25px;
padding: 2px;
border: 1px solid black;
background: #FCB08B;
border-radius: 2px;
font-weight:bolder;
color : white;
text-shadow:0 0 20px #933D14;
}
on drop I add this class
.item{
position : absolute;
width:80px;
height:80px;
font-size: 3em;
}
There is probably something to do with the clone but I can't figure it out !?