Click on image B without affect image A
I have one image (pink "B") included and over another (blue "A") like the follow exemple.
I need to click (onClick) over B and play a sound without play another sound conect to the image A.
At my level if I clik on B Is the sound of A ("playThis") that play.
Is there a way to click on B and do not "play" A?
The Image A
<style>
#Image1{
top: x1px;
left: x2px;
width: x3px;
height: x4px;
position: absolute;
background-image: y
}
</style>
The Image B is set in similar way.
<div onClick ="PlayThis()" id = "ImageA'"></div>
<div onClick ="PlayThat()" id = "ImageB'"></div>

