toggle text jquery

130

how to toggle in text add -

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

Comments

Submit
0 Comments