I need to get an element by ClassName that starts with:
width-48 height-48 profile_view_img
Full tag:
<div class="width-48 height-48 profile_view_img_9131256"></div>
Rooms of this class are always changing.
This is what I have tried so far:
var x = window.document.querySelectorAll("*[class^=\"width-48 height-48 profile_view_img\"]")[0]
source
share