JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://code.jquery.com/jquery-latest.min.js"></script>
<div>

</div>

<p>

</p>

<i>
  
</i>

CSS

div{
  background-image: url(http://vatocc.net/function/file/get/get_file.php?file=/secure/user_img/background_img/1265024466.jpg&purpose=view&format=false);
}

JavaScript

$('p').html($('div').css('background-image').replace('url("','').replace('")',''));
var img = new Image;
    img.src = $('div').css('background-image').replace('url("','').replace('")','');
    $('i').html('Source: ' + img.src + 'Width: ' + img.width + ' Height: ' + img.height);