remove css class jquery code example
Example 1: jquery remove class
Basic Syntax:
$(element).removeClass( "myClass yourClass" )
-------------------------------------------------------------------------------------
Html code example:
<p class="red highlight">test1</p>
<p class="red highlight marked">test2</p>
<p class="red highlight">test3</p>
<p class="red highlight">test4</p>
<script>
$( "p" ).removeClass( "highlight" )
</script>
<p class="red">test1</p>
<p class="red marked">test2</p>
<p class="red">test3</p>
<p class="red">test4</p>
Example 2: jquery remove class
Basic Syntax:
$(element).removeClass( "myClass yourClass" )
-------------------------------------------------------------------------------------
Html code example:
<p class="red highlight">test1</p>
<p class="red highlight marked">test2</p>
<p class="red highlight">test3</p>
<p class="red highlight">test4</p>
<script>
$( "p" ).removeClass( "highlight" )
</script>
<p class="red">test1</p>
<p class="red marked">test2</p>
<p class="red">test3</p>
<p class="red">test4</p>
Example 3: how to remove css from element using jquery
$('#tag-id').removeAttr('style');
Example 4: jquery remove css class
$("p").removeClass( "myClass yourClass" )
Example 5: remove css jquery
$("#id").css({ 'background-color' : '', 'opacity' : '' });
$(".class").css({ 'background-color' : '', 'opacity' : '' });
Example 6: how to remove css from element using jquery
$('.tag-class').removeAttr('style');