Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.."/>

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.