Multi Touch On Press

Hello Everyone,
I am trying to invoke two different functions when a two fingers touches the screen, irrespective of their timing. Say, there are two divs at different places. I touch First div with a finger -> functionA() executes and then, keeping the finger touched with the div, when I touch the second div with another finger --> functionB() executes. I tried on-touch() attribute with the divs but the second function only executes when I release the first touch and then touch the second div again. Any suggestions how to do it?