I have several div
in my page with class .tg-item-inner
and now I want to give them each random background-color. there is my jquery code:
var color = '#'+Math.floor(Math.random()*16777215).toString(16);
$(".tg-item-inner").css("background-color",color);
that will work. but all the div get one color. I want different color for each one