How to change the src attribute of a HTMLImageElement in JavaScript?
src
HTMLImageElement
I need help to convert logo.attr(\'src\',\'img/rm2.png\')
logo.attr(\'src\',\'img/rm2.png\')
try this...hope it works
window.onresize = window.onload = function () { if (window.innerWidth > 1536) { var logo = document.getElementById('rm'); logo.setAttribute('src','img/rm2.png'); } };