Initially, here is the CSS code that I am working with:
background-image: url(/style_elements/img/first.png), url(/style_elements/img/second.png);
I am trying to specifically target the second background image URL using jQuery:
var item_img_url = item_img_url_raw.replace('url("', '').replace('")', '');
However, this code only selects the first background image URL.