Đây là mã jquery sẽ hoạt động:
<script>
$(function () {
$(document).on('click', 'div.prodcls img', function (e) {
e.preventDefault();
window.open($(this).attr('src').replace('/thumbnails', ''), '');
});
});
</script>
Và một số css cho biện pháp tốt:
<style>
div.prodcls img:hover {
cursor: pointer;
}
</style>
Đây là một fiddle đang hoạt động: http://jsfiddle.net/DenGp/