Pergunta

I am working on an app in which i have 5 images and i want to get the Id of the image when touchstart event begins because i want to move those images to a certain position. I am using javascript.

Foi útil?

Solução

If you use jQuery, and provided that you have touchstart event bound to image

$('img').bind('touchstart', function() {
    var imageId = this.id;    
});
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top