I would like to show title of an image after "click" also on mobile devices.
So far I got this, however I don't know how to display the tooltip of the image.
$(document).ready(function(){
$('#imageID').on('click touchstart', function() {
$(title).animate();
});
});
Any help will be appreciated.