यहाँ jQuery कोड है जो काम करना चाहिए:
<script>
$(function () {
$(document).on('click', 'div.prodcls img', function (e) {
e.preventDefault();
window.open($(this).attr('src').replace('/thumbnails', ''), '');
});
});
</script>
और अच्छे उपाय के लिए कुछ सीएसएस:
<style>
div.prodcls img:hover {
cursor: pointer;
}
</style>
यहाँ एक काम करने वाली पहेली है:http://jsfiddle.net/DenGp/