Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Korakot Chaovavanich http://korakot.stumbleupon.com

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

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
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS