Answers for "jquery change text by id"

6

jquery change text of div

$('#dialog_title_span').text("new dialog title");
Posted by: Guest on December-22-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