I'm looking to add a hover animation to certain elements after a specific time, but I haven't been able to make it work correctly.
Here's my attempted solution:
CODE
$(document).ready(function(){
function setHover() {
$('.header_Icons_Main').each(function(i, obj) {
$(this).mouseenter()
});
}
setInterval(setHover, 1000);
});
Any suggestions or help would be greatly appreciated. Thank you!