How to send data from tnymce Editor by jquery ..The problem that I have a show that does not take the value of the variable of textarea may be added to the data fields
<script type="text/javascript">
$(function(){
$('#input').click(function(){
var name2 = $('#name2').val();
var editor1 = $('#editor1').val();
if(name2 ==''){
$('#msg').html('please insert name');
$('#msg').css('color','#900');
}else{
dataString = 'name2=' + name2 + '&editor1=' + editor1 ;
$.ajax({
type:'POST',
url:'add_artical_done.php',
data:dataString,
cash:false,
success:function(html){
if(html == '1'){
$('#msg').fadeIn(2000).html('Ok'); $('#msg').css('color','#63817a');
window.location="browseArtical";
}
}
});
}
});
});
</script>
<form enctype="multipart/form-data">
<input type="text" id="name2"/>
<textarea id="editor1" ></textarea>
<input type="button" id="input" value="send.."/>