“TOMA EXTENTO JQUERY” 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 “TOMA EXTENTO JQUERY”

Preguntas similares a “TOMA EXTENTO JQUERY”

Más respuestas relacionadas con “TOMA EXTENTO JQUERY” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código