このコードはフォームを送信し、テキストエリアのプレースホルダーを変更することを除いて機能しますid=message
$('#submit').click(function(){
$.post("mail.php", $("#contact").serialize(), function(response) {
$('#message').attr('placeholder', response);
$('#success').html(response);
});
});
Firebug にエラーはありません。