w3resource

jQuery: How to get textarea text using jQuery

jQuery Practical exercise Part - I : Exercise-24

How to get textarea text 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 textarea text using  jQuery.</title>
</head>
<body>
<textarea id="mytextarea" rows="4" cols="50">
MySQL was developed by Michael Widenius and David Axmark in 1994. Presently MySQL is maintained by Oracle (formerly Sun, formerly MySQL AB). 
</textarea>
</body>
</html>

JavaScript Code:

 var text = $('textarea#mytextarea').val();  
 console.log(text);

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


Contribute your code and comments through Disqus.

Previous: Count number of rows and columns in a table using jQuery.
Next: Access form input fields 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.