Answers for "how to change the text using jquery on click"

1

how to change the text using jquery on click

$(document).ready(function () {
    $("#fold").click(function () {
        $("#fold_p").fadeOut(function () {
            $("#fold_p").text(($("#fold_p").text() == 'Fold it') ? 'Expand it' : 'Fold it').fadeIn();
        })
    })
});
Posted by: Guest on September-07-2021

Code answers related to "how to change the text using jquery on click"

Code answers related to "Javascript"

Browse Popular Code Answers by Language