I want to retrieve background image from this link https://20.detik.com/sosok/20220108-220109036/tangis-rindu-pak-ogah-pada-pak-raden but the output is null
<div class="vjs-poster" tabindex="-1" aria-disabled="false" style="background-image: url("https://cdnv.detik.com/videoservice/AdminTV/2022/01/08/Tangis_Rindu_Pak_Ogah_Pada_Pak_Raden-20220109001335-custom.jpg?w=400&q=80"); background-color: black; background-size: contain;"></div>
here is my code
var c = document.createElement("html");
c.innerHTML = content;
body = c.getElementsByTagName('body')[0];
//get poster url
filmimg = body.getElementsByClassName("container-video")[0];
div = filmimg.querySelector("div #detikVideoIdNewId video .vjs-poster");
console.log(div);