Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $("input[type='submit']").click(function(e){
- e.preventDefault();
- var form = $('#fileUploadForm')[0];
- console.log(form);
- var data = new FormData(form);
- // console.log(data);
- // var datas = $(this).closest('form').serialize();
- // console.log(datas);
- $.ajax({
- headers: {
- 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
- },
- type: "POST",
- enctype: 'multipart/form-data',
- url: "{{ url('ajax-form') }}",
- data: data,
- processData: false, // Important!
- contentType: false,
- cache: false,
- timeout: 600000,
- success: function (data) {
- console.log(data);
- },
- error: function (e) {
- console.log(e);
- }
- });
- })
Advertisement
Add Comment
Please, Sign In to add comment