Fairly simple, I need to know if a custom image has been added to overwrite the default, and if it has to get its url.
(The custom image will always be added via inline style)
I'm ok with parsing the url out of the property, I just need to only get this if it's inline.
Update
I have an idea that I didn't want to propose at first to keep all ideas on the table.
I check the element for `.indexOf("background-image") after getting .attr('style') and if this !== -1 then I get .css('backgroundImage') and parse the url out with regex.
I'm just not convinced this is the best solution, but it is working.