Hello to all the jQuery developers out there! I have a question that's fairly simple. I'm trying to change a CSS attribute for an element when I hover over a different element on the page.
I've created a fiddle for you to review, and I'm just curious as to which part I may have messed up.
$('a[href*='our_work']').hover(function(){
$('div[id*="HM_Menu562"]').css({ top: '50' });
}, function(){
$('div[id*="HM_Menu562"]').css({ top: '105' });
});
Just wanted to mention that I am working with my client's code and I have very limited ability to modify what already exists.