Remove background image css or jquery (preferably css).
I've a situation where I cannot set background image using css.
I read all similar question here in stackoverflow but I couldn't find the solution.
html
<div class="foo" style="background-image:url(http://example.com/gallery/albums/foo.jpg);">
</div>
css
.foo{
width 400px;
height:300px;
}
@media screen and (max-width: 200px) {
.foo{
background-image: none;
}
}
JSFIDDLE Here