I have the following code:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
<link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script><scriptsrc="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
<link href="editor.css" type="text/css" rel="stylesheet"/>
<script src="editor.js"></script>
</head>
<body>
<div id="txtEditor"></div>
<script type="text/javascript">
$(document).ready( function() {
$("#txtEditor").Editor();
});
</script>
</body>
</html>
My question is how can I capture the information that is passed by the text editor in "DIV = txtEditor"
to a textarea so that PHP can capture the data and send it by the post method to the database?