Iam working on adding an event planner to my Html form , and i cant figure out how to pass this data ("meetup","startEvent","break") from html to my Database . ive used jQuery to show the data on my browser console like this and it work
$(document).ready(function(){
$('#bang').on("click", function(){
$("#editable > li").each(function(){
$e=($(this).text());
console.log($e);
but i cant get it to send to another page
$(document).ready(function(){
$('#bang').on("click", function(){
$("#editable > li").each(function(){
$e=($(this).text());
console.log($e);
$("#submit").click(function(){
$.ajax(
{
url: "test.php",
type: "POST",
data: {$e},
success: function (result) {
alert('success');

data: { value: $e },