Answers for "toggle js button connect with html"

1

jquery toggle text on click

$(function(){
   $(".pushme").click(function () {
      $(this).text(function(i, text){
          return text === "PUSH ME" ? "DON'T PUSH ME" : "PUSH ME";
      })
   });
})
Posted by: Guest on June-02-2020
-2

how to toggle in text add

$(".email-slide").click(function(){
    $("#panel").slideToggle("slow");
    $(this)
    .text("Close")
    .toggleClass("active");
});
Posted by: Guest on May-12-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language