$(function () {
$('input.send').on('click', function () {
var status = $(this).val();
$.ajax({
url: '/api/checkform',
data: {
text: $("textarea[name=status]").val(),
status: status
},
dataType : 'json'
});
});
});