APIに渡されるテキストボックスがあります...入力されたテキストは保存されます...
<input type="text" id="name" placeholder="Type something">
以下のコードは、ブレークポイントのあるchromeの開発者モードで動作しますが、ブレークポイントがないと動作しません...
$("#submit").click(function() {
var name = $('#name').val() ;
var url = "https://www.mariyano.com/app-server/test/?action=add_list&name="+name;
$.ajax({
url: url,
dataType: "jsonp",
});