Sometimes you just can’t edit the HTML but still need to make the div
clickable. Here’s how with using JavaScript. *Jquery needs to be installed.
<script> $('.YOUR-CLASS-NAME').each(function() { var link = $(this).html(); $(this).contents().wrap('<a href="YOUR-URL-LINK"></a>'); }); </script>
You need to replace .YOUR-CLASS-NAME
with your div’s class and replace "YOUR-URL-LINK"
with your destination link. Pretty simple, heh?
Thanks in support of sharing such a good idea,
article is pleasant, thats why i have read it completely