Answers for "on text change jqueyr"

14

jquery change text

$(yourElement).html("New text");
//sets yourElement innerHTML to "New text"
var text = $(yourElement).html();
//html() returns the text inside yourElement if you pass no parameters
Posted by: Guest on March-14-2020
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 "Javascript"

Browse Popular Code Answers by Language