<html>
<body>
<h1>Hello World!</h1>
<div id="myDiv" style="background-image:url('img_tree.png');border:1px solid black;height:400px;width:400px;">This is a div element.</div>
<br>
<button type="button" onclick="myFunction()">Get the background image of div</button>
<script>
function myFunction() {
alert(document.getElementById("myDiv").style.backgroundImage);
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_style_backgroundimage3 by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 03:03:07 GMT -->
</html>