i want to change the src of the image tag given below to images/hero-desktop.jpg
<img src="images/hero-mobile.jpg" alt="" class="image">
using javascript i tried
value=800;
if(screen.width > value){
document.getElementsByClassName('image').src="images/hero-desktop.jpg";
}
but it doesnt work. the js file is linked and working(checked by console log).
can anyone help me out????