I tried out two snippets of code which are both triggered by a touchstart event.

1:

var imagelayer_id = "img_255";
$("#" + imagelayer_id).show();

2:

var imagelayer_id = "img_" + imagemap_data[0][y*width*4 +x*4];
$("#" + imagelayer_id).show();

In the first case the image is displayed immediately after I touch my iPhone. In the second case however the image is displayed only when I release my touch again. The array I access in case #2 comes from a canvas object that I preloaded:

context.getImageData(0, 0, 100, 100).data;

Does anyone have an explanation for this strange delay in case #2? Would be very thankful for tipps!

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.