Apparently they didn't natively add the ability to scroll the page while dragging an item. For my purposes, I need to be able to scroll a page. I know you can do draggable in jQuery, but I don't want to switch to this because I already have a lot of other things set up that rely on using the HTML5 implementation.
I figured you could get the event.pageY
value while you are scrolling and if it is close to the bottom of the page, scroll down, and if it's close to the top, scroll up. I'm having trouble retrieving the values of event.pageY
in my drag
function.
Here is my fiddle. Anyone have any ideas?