サーバー側で ajax イベントの Word ドキュメントを作成しています。エラーがなければ応答として、ダウンロードをプッシュしたいと思います。jquery ajaxで可能ですか?私のコードは、この瞬間を次のように見ています
$.ajax({
type: "POST",
url: 'docsx.php',
data: $("#edit_form").serialize(), // serializes the form's elements.
success: function(data)
{
**here should be fired the download** // show response from the php script.
},
error:function(){
alert('Es gibt ein Fehler bei Daten übetragung!');
}
});