How to remove css property in jQuery

Jquery

Jquery Problem Overview


if(prev_clicked)
{	
    $("#accordion li a.category").css('background-image', 'url("img/off_all_channel.png")');					
    $("#accordion li a.comment").css('background-image', 'url("img/on_all_online.png")');					
    $(".icha0").removeProperty("background-color");
    $(".icha0").removeProperty("opacity");
}
else
{	
   $(".icha0").css("background-color","#D5D5D2");
   $(".icha0").css("opacity","0.70");
}

I am trying to remove two css properties that I added but It seems not working. Any though?

Jquery Solutions


Solution 1 - Jquery

You can remove them by:

$(".icha0").css({ 'background-color' : '', 'opacity' : '' });

Solution 2 - Jquery

You can use .css() to remove css property as well, like this:

$(".icha0").css("background-color","");
$(".icha0").css("opacity","");

As mentioned in the jquery documentation:

> Setting the value of a style property to an empty string — e.g. $('#mydiv').css('color', '') — removes that property from an element if it has already been directly applied,

Solution 3 - Jquery

To remove the in-line CSS property use:

$('.className').css({propertyName: ''});

To remove the whole in-line style of an element use:

$('.className').removeAttr('style');

I've also found this suggestion to remove the CSS property from styles (separate file) use:

$('.className').style.propertyName = '';

BUT I couldn't get it to work at all, so I'm putting it here just FYI.

Solution 4 - Jquery

Either you can set the properties back to blank:

$(".icha0").css("background-color","");

Or you can change the code to use classes defined in a CSS file:

$(".icha0").addClass('properties'); 
$(".icha0").removeClass('properties');

Solution 5 - Jquery

I was having this problem but I have not seen any solution here that satisfies the OP. Most of the solutions suggest getting rid of the entire style attribute which is not worth it.

I used jQuery's prop method.

var styleObject = $('my-selector').prop('style'); 

styleObject.removeProperty('background-color');

Solution 6 - Jquery

Alternate option, that works around some problems.

Add a new class to the element, and give the properties the value inherit !important, eg:

css

.clearCSS {
    background-color: inherit !important;
}

jquery

$(".icha0").addClass('clearCSS'); 

Solution 7 - Jquery

This is literally a copy paste from this answer, and I use it to clear CSS style that I added with jQuery in a previously executed function.

To remove the in-line CSS property use:

$('.className').css({propertyName: ''});   

To remove the whole in-line style of an element use:

$('.className').removeAttr('style');

OR by ID:

$('#idName').removeAttr('style');

Solution 8 - Jquery

We have two ways, either you can directly remove the applied CSS style class which is applied to DOM element or remove the applied CSS style from element

//Remove the class associated with element

$('#ID').removeClass("cssClass");

//Remove the CSS style from DOM element

$('p').css({"color":""});

Solution 9 - Jquery

with jquery

  $('#ID').removeAttr("style")

withoyt jquery

document.getElementById("ID").removeAttribute("style")

Solution 10 - Jquery

To remove all CSS property in JQuery the following code can be use:

    $(".selector").removeClass().removeAttr('style');

Thanks.

Solution 11 - Jquery

if you need to remove and not update a specific property you can simply use removeProp and not removeProperty :

$(".icha0").removeProp("background-color");
$(".icha0").removeProp("opacity");

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionSooIn NamView Question on Stackoverflow
Solution 1 - JqueryNevinView Answer on Stackoverflow
Solution 2 - JqueryMahmoud GamalView Answer on Stackoverflow
Solution 3 - Jquery3GeeView Answer on Stackoverflow
Solution 4 - JqueryJivingsView Answer on Stackoverflow
Solution 5 - JqueryRodgathView Answer on Stackoverflow
Solution 6 - JqueryAndrewView Answer on Stackoverflow
Solution 7 - JqueryJortegaView Answer on Stackoverflow
Solution 8 - JqueryRajeevView Answer on Stackoverflow
Solution 9 - JqueryVitalicusView Answer on Stackoverflow
Solution 10 - JqueryKawsik RoyView Answer on Stackoverflow
Solution 11 - JqueryAzzabi HaythemView Answer on Stackoverflow