Please I am working on a project and I'm new to Javascript so I was wondering If there is a Jquery code or just a procedure on what to do to make the backgroung image to change on navigation menu hover. e.g. hover on link one changes background image of div to image 1 hover on link two changes background image of div to image 2 Here is the HTML
<div class = "header-menu">
<div class ="pull-left">
<ul>
<li><a class="navigation" href="index.html">Home</a></li>
<li><a class="navigation" href="index.html">About</a></li>
<li><a class="navigation" href="index.html">Rules</a></li>
</ul>
</div>
<div class = "pull-right">
<ul>
<li> <a class="navigation" href="login.html">Log In </a></li>
<li><a class="navigation" href="signup.html">Sign Up</a></li>
</ul>
</div>
<div class = "logo-header">
<center><a href = "index.html"><img src = "images/logo.png" ></a></center>
</div>
</div>
<div class= "nav-tv">
</div>
and also the css
.header-menu{
height:95px;
width:100%;
color:black;
height:100px;
position:relative;
background-color:black;
overflow: hidden;
}
.header ul {
padding-top:35px;
}
.header-menu li {
display: inline;
margin :20px;
}
.pull-left{
padding-top:35px;
margin-top:0px;
float: left;
width = 33.3%;
}
.logo-header{
margin-top:15px;
position:absolute;
width:220px;
border: 1px solid black;
margin-left:570px;
margin-right:500px;
width = 33.3%;
}
.pull-right{
padding-top:35px;
width = 33.3%;
float :right;
}
.nav-tv{
width:100%;
height:350px;
border:1px solid black;
background-image: url('images/2.jpg');
background-repeat: no-repeat;
background-size: cover;
}