How to change the src attribute of a HTMLImageElement in JavaScript?
I need help to convert logo.attr('src','img/rm2.png') to vanilla JavaScript.
window.onresize = window.onload = function () {
if (window.innerWidth > 1536) {
var logo = document.getElementById('rm');
logo.attr('src','img/rm2.png');
}
};
You mean you want to use pure javascript?
This should do it:
So your function should look like :
Note: You could also use element.setAttribute. BUT, see this post for more:
When to use setAttribute vs .attribute= in JavaScript?