Answers for "jquery class add remove"

6

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>

// remove all highlight class from p tag
<script>
	$( "p" ).removeClass( "highlight" )
</script>

// output after execution of this code
<p class="red">test1</p>
<p class="red marked">test2</p>
<p class="red">test3</p>
<p class="red">test4</p>
Posted by: Guest on March-03-2020
1

toggle jquery remove others

$(".nav-link").click(function () {
  // If the clicked element has the active class, remove the active class from EVERY .nav-link>.state element
  if ($(this).hasClass("active")) {
    $(".nav-link").removeClass("active");
  }
  // Else, the element doesn't have the active class, so we remove it from every element before applying it to the element that was clicked
  else {
    $(".nav-link").removeClass("active");
    $(this).addClass("active");
  }
});
Posted by: Guest on June-25-2020
17

jquery remove class

//Remove this same line after copying
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>

// remove all highlight class from p tag
<script>
	$( "p" ).removeClass( "highlight" )
</script>

// output after execution of this code
<p class="red">test1</p>
<p class="red marked">test2</p>
<p class="red">test3</p>
<p class="red">test4</p>
Posted by: Guest on January-10-2021
1

jquery remove class

$("button").click(function(){
  $("p").removeClass("intro");
 });
//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>

// remove all highlight class from p tag
<script>
	$( "p" ).removeClass( "highlight" )
</script>
// example $(element).removeClass( "myClass yourClass" )
Posted by: Guest on February-13-2021
1

add and remove class in jquery

$('#toggle li').on('click', function () {
    $(this).toggleClass('open')
});
Posted by: Guest on June-04-2020
-1

toggle one class add and one class remove same time and after click remove class add and add class remove jquery

function viewPastClass(id) {
        var class_date = $('#pastclassdata' + id).val();
        // alert(class_date);
        // $('#plclasses').hide();

        $.ajax({
            type: 'GET',
            url: '{{ url("/teacher/class/viewPastClass") }}',
            headers: {
                'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
            },
            data: {
                'class_date': class_date,
            },
            success: function(result) {
                $('#plclasses').show(class_date);

            },
            error: function() {}
        });
    }
Posted by: Guest on September-01-2020

Code answers related to "jquery class add remove"

Code answers related to "Javascript"

Browse Popular Code Answers by Language