Few days back, one of my friend post one comment on my blog post and he was asking about JQuery dragable div having images as well as some text contents inside the div and he was trying to move. I promised him to find the solution and post it in my blog. You make elements draggable by assigning them to the class "dragableElement".

You make elements draggable by assigning them to the class "dragableElement". Examples:
<img src="images/image1.jpg" style="float:left" class="dragableElement"> <div id="keyText" class="dragableElement">You can drag this box as well as the images on this page</div>
These are some examples take from the demo:
Remember position and z-index in cookie
You can configure the script to remember the position of the dragable elements in a cookie. This is done by adding lines like this.
<script type="text/javascript">
var rememberPositionedInCookie = true;
var rememberPosition_cookieName = 'demo';
</script>
right above the place where you include dragable-content.j.
Demo: Jquery Dragable Div
Download: JQuery dragable Div