Drag and Drop image with javascript
1 2 <body> 3 <script src="http://www.walterzorn.com/scripts/wz_dragdrop.js"></script> 4 5 <img name="name1" src="someImg.jpg" width=240 height=135> 6 7 <script>SET_DHTML("name1")</script> 8 </body>
You can make the image resizable (using shift-drag) by
1 2 SET_DHTML("name1"+RESIZABLE) // any size 3 SET_DHTML("name1"+SCALABLE) // keep aspect ratio
See more detail here
http://www.walterzorn.com/dragdrop/dragdrop_e.htm