I\'m tryin\' to make the article\'s link clickable on the whole article space.
First, I did the hover thing, changing color on mouseover and so on... then on click i
A cleaner way to solve this is to take the the element you are triggering the click on to and put it outside of the triggered element:
So if you have this:
link
By moving the "div.btn a" tag outside of the "boxContent" div. You avoid the recursion loop all together.