Hello,
As the title says I am trying to replace an image on the page with another image. It appears to be working but I believe that the old image is still there. Is there a better way to do this? Should I remove the old image before I add the new one?
Code:
$(".bannerImage").css('background-image','url("course_assets/banner_grey.png")');
Code:
.bannerImage{
background:url('../course_assets/banner.png')no-repeat;
height: 88px;
width: 100%;
}