I have a background image that stays in positions when scrolling down the page.
See JSFiddle here: JS Fiddle
Code
body {
font-family: 'Open Sans', sans-serif;
background-image: url("http://vrexpert.virtualrealities.netdna-cdn.com/wp-content/uploads/2015/12/Google5.jpg");
background-repeat: no-repeat;
background-size: cover;
width: 100%;
height: 100%;
background-attachment: fixed;
overflow-x: hidden !important;
}
However
This does not get applied when using a mobile device.. (I'm using an iPad for example). The Image does not scroll along with the page..
How do I get the same result on mobile devices as it does on my desktop?