programming faqs interview questions tech technical educational freshers guide preparation interviews hr telephonic
try another color:
try another fontsize: 60% 70% 80% 90%
Programming FAQs

how to get textarea content in jquery

You can't request more than 20 challenges without solving them. Your previous challenges were flushed.
Average: 3.4 (11 votes)

we can get the textarea

we can get the textarea value using jquery
$("#description").val();

see example below:

javascript code:

$(function() {
$(".button").click(function() {
var description = $("#description").val();
alert(description);

});
});