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

Drag and Drop image with javascript (See related posts)

<body>
<script src="http://www.walterzorn.com/scripts/wz_dragdrop.js"></script>

<img name="name1" src="someImg.jpg" width=240 height=135>

<script>SET_DHTML("name1")</script>
</body>

You can make the image resizable (using shift-drag) by
SET_DHTML("name1"+RESIZABLE) // any size
SET_DHTML("name1"+SCALABLE) // keep aspect ratio

See more detail here
http://www.walterzorn.com/dragdrop/dragdrop_e.htm

You need to create an account or log in to post comments to this site.


Click here to browse all 4858 code snippets

Related Posts