動作するはずのjqueryコードは次のとおりです。
<script>
$(function () {
$(document).on('click', 'div.prodcls img', function (e) {
e.preventDefault();
window.open($(this).attr('src').replace('/thumbnails', ''), '');
});
});
</script>
そして、適切な測定のためのいくつかのcss:
<style>
div.prodcls img:hover {
cursor: pointer;
}
</style>
実用的なフィドルは次のとおりです。