i want to make a draggable image in jquery. first of all my experience with jquery is 0. having said that let me describe what i want to achieve. i have fixed width/height
You can use the following;
$(function() { $("#draggable").draggable(); });
.container { margin-top: 50px; cursor: move; } #screen { overflow: hidden; width: 200px; height: 200px; clear: both; border: 1px solid black; }