I'm working on a mobile site and designing a sliding gallery which has Images & Videos. If I click on video, it open in Youtube and works fine. Here is the code I use.
<a href="http://www.youtube.com/v/YouTubeID?version=3&hl=en_US">
<img class="sliderImage" src="http://img.youtube.com/vi/YouTubeID/0.jpg" alt="Video" />
</a>
i want similar functionality with images so that it gets open in the Default Image Gallery like Android Image Gallery, Windows Mobile Photo Viewer etc as per the mobile device.
Here is the code
<a href="Some Image URL">
<img class="sliderImage" src="Some Image URL" alt="It's Better" />
</a>
I think, there is something needed in href to redirect the image to gallery but I do not know what that could be.
It would be really helpful if someone can point me in right direction.
Thanks in advance.