I am wanting to make the whole div/figure clickable, but I have to do it with Jquery as this is a wordpress plugin. At the moment only the heading is clickable I dont want to go to the heading to active the href I would like to be able to click anywhere on the div/image and it should go to the link.
You can see the link here https://elysian.dijestdesigns.com/voice/
Here's the code
<div class="ctgrid">
<div class="item-grid" data-id="ex_id-extp-5203-398">
<div class="exp-arrow ">
<figure class="tpstyle-img-9 tppost-398">
<a href="https://elysian.dijestdesigns.com/portfolio/jessica-roberts/"><img width="1365" height="2048" src="https://elysian.dijestdesigns.com/wp-content/uploads/2020/01/14114983_1408363416137891_3279299182950828483_o.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" srcset="https://elysian.dijestdesigns.com/wp-content/uploads/2020/01/14114983_1408363416137891_3279299182950828483_o.jpg 1365w, https://elysian.dijestdesigns.com/wp-content/uploads/2020/01/14114983_1408363416137891_3279299182950828483_o-200x300.jpg 200w, https://elysian.dijestdesigns.com/wp-content/uploads/2020/01/14114983_1408363416137891_3279299182950828483_o-683x1024.jpg 683w, https://elysian.dijestdesigns.com/wp-content/uploads/2020/01/14114983_1408363416137891_3279299182950828483_o-768x1152.jpg 768w, https://elysian.dijestdesigns.com/wp-content/uploads/2020/01/14114983_1408363416137891_3279299182950828483_o-1024x1536.jpg 1024w, https://elysian.dijestdesigns.com/wp-content/uploads/2020/01/14114983_1408363416137891_3279299182950828483_o-600x900.jpg 600w" sizes="(max-width: 1365px) 100vw, 1365px"></a>
<figcaption>
<div></div>
<h3>
<a href="https://elysian.dijestdesigns.com/portfolio/jessica-roberts/">Jessica Roberts</a>
</h3>
</figcaption>
</figure>
<div class="exclearfix"></div>
</div>
</div>
I have tried adding this, but that didn't seem to work
$(".item-grid").click(function(){
window.location=$(this).find("a").attr("href");
return false;
});
I am not a pro coder so here to get some help from you guys please. Thanks