Ian McIntyre Silber
Ian McIntyre Silber

Reputation: 5663

Remove background color/images for all elements with jQuery

Is there a simple way to use jQuery to remove all background styles on a page? Specifically, need to remove background color and images.

Upvotes: 13

Views: 42708

Answers (3)

alex
alex

Reputation: 490433

Real simple with jQuery...

$('*').css('background', 'transparent');

jsFiddle.

If you didn't have jQuery at your disposal...

var allElements = document.getElementsByTagName("*");

for (var i = 0, length = allElements.length; i < length; i++) {
    allElements[i].style.background = "none";
}

jsFiddle.

Upvotes: 31

Sharon
Sharon

Reputation: 11

$('*').css('background', 'transparent');

Upvotes: 1

pooja
pooja

Reputation: 2432

HTML

<ul>
 <li class="one"><a href="#"></a></li>
        <li class="two"><a href="#"></a></li>
        <li class="three"><a href="#"></a></li>
</ul>

CSS

.bg1 { background: url(images/red.jpg) repeat-x; background-color: #6c0000; }
.bg2 { background: url(images/orange.jpg) repeat-x; background-color: #5A2A00; }
.bg3 { background: url(images/blue.jpg) repeat-x; background-color: #00345B; }

JS

$(document).ready(function(){ 

        $("li.one").click( function(){ $
  ("body").removeClass('bg2 , bg3').addClass("bg1");
 });

 $("li.two").click( function(){ $
  ("body").removeClass("bg1 , bg3").addClass("bg2");
 });

 $("li.three").click( function(){ $
  ("body").removeClass("bg1 , bg2").addClass("bg3");
 }); 

});

Upvotes: -1

Related Questions