I am trying to use jQuery to change the background image in a table cell, the table cell has its own class of ".active". I am using jQuery to change other elements in the same place and they all work fine so i think i must have something wrong in the syntax. the function i am using executes after a button is clicked. my code:
function vehicle(arg){
$(".active").css("color", "blue");
$(".active").css("background-image", "url(../img/car.png)");
};
css:
.active{
background-size: 10px 10px;
background-repeat: no-repeat;
border-right: 1px solid none;
the first line executes fine, i have tried the following code plus changed the picture size in every way i can think of :
$(".active").css("background-image", "../img/car.png");
$(".active").css("background-image", "url('../img/car.png')");
can anyone point out what i did wrong?