I am coding a webpage to be viewed on iPad. It uses Safaris/Webkits drag & drop. I have exactly copied Safari\'s example drag & drop code but it won\'t work.
Did you read the top of the page you linked to in Apple's documentation? It says:
Note: This technology is supported only on desktop versions of Safari. For iOS, use DOM Touch, described in Handling Events (part of Safari Web Content Guide) and Safari DOM Additions Reference.
DOM Touch link
Safari DOM Additions link
I believe you may want to listen for the touchmove and touchend events instead of on drag and on drop. :)