I couldn't post the textarea value with ajax in elRTE rich text editor.
The editor demo page is like below;
and I use the code below;
$.ajaxSetup({
type: "POST",
url: "forms.php",
cache: false,
dataType: "html"
});
$("input.add").live("click", function(){
$.ajax({
data: {action: 'add', tag: $('input.tag').val(), description: $('#editor').val()},
success: function(data){
$("#message").html(data);
}
});
});
I have tried couple of different ways to send the textarea value, but couldn't achieve, thanks for your helps.