programming faqs interview questions tech technical educational freshers guide preparation interviews hr telephonic
how to get textarea content in jquery
You can't request more than 20 challenges without solving them. Your previous challenges were flushed.
Tue, 12/09/2008 - 20:25 — Anonymous
we can get the textarea
Tue, 12/09/2008 - 20:29 — adminwe can get the textarea value using jquery
$("#description").val();
see example below:
javascript code:
$(function() {
$(".button").click(function() {
var description = $("#description").val();
alert(description);
});
});