“JQuery Toggle Text al hacer clic” Código de respuesta

TOMA EXTENTO JQUERY

$("button").click(function(){
  $(this).text($(this).text() == 'Show' ? 'Close' : 'Show');
});
syeddeveloper

JQuery Toggle Text al hacer clic

$(function(){
   $(".pushme").click(function () {
      $(this).text(function(i, text){
          return text === "PUSH ME" ? "DON'T PUSH ME" : "PUSH ME";
      })
   });
})
Modern Marten

Cómo alternar en el texto Agregar

    $(".email-slide").click(function(){
    $("#panel").slideToggle("slow");
    $(this)
    .text("Close")
    .toggleClass("active");
});
Sleepy Snake

Respuestas similares a “JQuery Toggle Text al hacer clic”

Preguntas similares a “JQuery Toggle Text al hacer clic”

Más respuestas relacionadas con “JQuery Toggle Text al hacer clic” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código