I've been plugging away at a project recently and up until now I've been using chromes debugger mobile emulator. This means I've been able to simulate touches and dragging behaviors with my mouse. Unfortunately because of just having one mouse I could never do both at the same time.
The project I'm working on adds two half-page sized DOM elements to the page, the one on the left has a touchmove event listener tied to it, and the other on the right has a touchstart event listener tied to it. They both work swimmingly.
But tonight I uploaded my project online to test some stuff out and opened it with an iPad and found I could only perform one action at a time. The page could not detect touchstart events on the right while I touchmoved on the left, and likewise couldn't detect touchmove events on the left while I tapped on the right.
Anyone done anything like this before? Like detecting different sets of touches on separate DOM elements?
Code snippets are a bit large to include here but the link to the github repo is here: https://github.com/matthewolsson/JoyShtick