I used ACE Editor
. I want to get all value from ACE Editor
using PHP
. How can i get?
I wrote JQuery Ajax
code
$('#save').click(function(){
var editor = ace.edit("editor");
var code = editor.getSession().getDocument().getValue();
$.ajax({
type: "POST",
url: "data.php",
data: {'code':code},
success: function (data) {
console.log(data);
}
});
});
When this code work, not all the code comes, what can i do? without getlValue()
or getSession()
thanks regards