w3resource

jQuery: How to get the value of a textbox

jQuery Practical exercise Part - I : Exercise-17

How to get the value of a textbox using jQuery.

Sample solution :

HTML Code :

<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-git.js"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>How to get the value of a textbox using jQuery</title>
</head>
<body>
<input type="text" value="Input text here">
</body>
</html>

JavaScript Code :

$( "input" )
  .keyup(function() {
    var tvalue = $( this ).val();
    console.log(tvalue);
  })
.keyup();

See the Pen jquery-practical-exercise-17 by w3resource (@w3resource) on CodePen.


Contribute your code and comments through Disqus.

Previous: Underline all the words of a text using jQuery.
Next: Remove all CSS classes using jQuery.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.