jquery on change value input text code example

Example 1: jquery onchange input value

$("input").change(function(){
  alert("The text has been changed.");
});

Example 2: jquery change value of input

$('selector').val('new value');

Example 3: 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

Example 4: value change event jquery

$("#input").change(function(){
  alert("The text has been changed.");
});

Example 5: jquery set input value

$("button").click(function(){
  $("input:text").val("Glenn Quagmire");
 })