Answers for "html input button type change text with jquery"

3

jquery input text value change event

$("input").change(function(){
  alert("The text has been changed.");
});
Posted by: Guest on June-10-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 "html input button type change text with jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language