Answers for "click to change html in jquery"

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
1

jquery on element change

// On element change.
$('mydiv').bind('DOMSubtreeModified', function () {
  console.log('changed');
});
Posted by: Guest on September-10-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language