Visit this link to view the code
My Goal:
I want the hover effect that normally applies to buttons when hovered over, to instead be applied when a user hovers over the parent div containing those buttons.
The parent divs in question have a class of "serviceContent". Within these parent divs are blue buttons labeled "Find out more".
I attempted to achieve this using the following jQuery code:
$('.serviceContent').mouseover(function() {
$(this).find('.btn').trigger('mouseover')
})
However, this approach does not seem to work. Is there another method or event that can be triggered to replicate the hover effect on the button when hovering over its parent div?
Thank you for your help!