I have created horizontal scrolling parallax web site for that web site I want to add a background images based on the browsing device
for example
from normal pc <img src="bg.png">
from tablet <img src="bg-500px.png">
from smaller mobiles <img src="bg-small.png">
How can i get a solution for this I tried <body onload="fun()">
in
fun(){
var bg=d.getEBI("img id");
if(window.innerwidth=referenceWidth)
{
bg.src=respective-img.png
}
}