Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
アップロードファイルにjqueryファイルアップロードプラグインを使用しています。ユーザーがファイルブラウザダイアログからファイルを選択したときにアップロードを開始したい。
これどうやってするの。
http://blueimp.github.io/jQuery-File-Upload/
$('#fileupload').fileupload({ url: '/path/to/upload/handler.json', add: function (e, data) { data.submit(); }, });