Currently my AJAX is working like this:
index.php
One
You can submit the form with jQuery's $.ajax method like this:
$.ajax({ url: 'one.php', type: 'POST', data: $('#myForm').serialize(), success:function(data){ alert(data); } });