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);
}); });
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);
});
});