Code: Select all
How to get the value of a textbox using jQuery
$( "input" )
.keyup(function() {
var tvalue = $( this ).val();
console.log(tvalue);
})
.keyup();
Code: Select all
How to get the value of a textbox using jQuery
$( "input" )
.keyup(function() {
var tvalue = $( this ).val();
console.log(tvalue);
})
.keyup();