I came across a website with a very interesting navigation style that caught my attention. You can see it here: . What intrigued me the most was how when you hover over each menu item, the main picture changes.
I attempted to incorporate jQuery into the class to achieve a similar effect, but unfortunately, I couldn't get it to work at all.
$(".nav-item1").hover(function){
$(".bg-nav").css('background','url('images/bg2.jpg')');
}
Is there perhaps a plugin or more advanced jQuery techniques that could help me achieve this functionality?
I would greatly appreciate any guidance on this matter.
Thank you in advance.