I want to allow the user to drag and drop an image from a web page into my web application, and then store and use the image URL in a different location of the application. Therefore, I am creating an input field as a drag target.
But since this allows you to drop any dragged web object (like links), I need to do some error checking. I could add a button there, but it would be better if the drop were automatically detected.
So the question is, are there any event handlers, mostly supported in IE7 and FF3, that fire when the image is deleted? Does it just raise a change event in the field?
Andre Wyrwa
source
share