touchme js
using the touch.js to move boxes
by James Doyle
HTML
<script src="http://www.midemos.com/demos/iphone/touch/js/jquery.touch.js"></script>
<div id="box"></div>
CSS
#box {
background: #333;
border: 1px solid #000;
height: 100px;
width: 100px;
}
JavaScript
$('#box').touch({
animate: true,
sticky: false,
dragx: true,
dragy: false,
rotate: true,
resort: true,
scale: false
});