<div style="background: url(http://www.example.com/image.jpg) center center/cover;">
This inline background image gets overridden by an external stylesheet:
div {
background-image: none !important;
}
My question: using JavaScript/jQuery, how can I get the URL of the background image that was defined in the inline styling but was overridden by CSS?
Edit: Trying to use .css() won't work because that gets the computed background style, which is none
:)