Hey guys i really need some help with this! So i need to change an image when you click on it to another one. Essentially its a sound button so when its clicked it shows mute.
So far I'm completely baffled and have no idea where to start i know i can use Jquery/Javascript. Please help me!! here is my code:
    <div id= "Mute">
    <img class="BeforeClick"src="images/BeforeClickMute.png" width="140" height="126"/>
    <img class="AfterClick"src="images/AfterClickMute.png" width="140" height="126" />
    <p>Mute</p>
    </div>     
also this is my css code
    .BeforeClick {
position:absolute;
z-index:9;
left:245px;
top:340px;  
}
    .AfterClick {
position:absolute;
z-index:8;
left:245px;
top:340px;  
}
 
     
     
    