How to upload file (png,jpg,pdf,doc) with ajax?
saves only the field "name"
this my html/form:
<form method="post" action="javascript:void(0)" name="ajax_f" id="ajax_f" autocomplete="off" enctype="multipart/form-data">
<input type="file" class="custom-file-input" name="file">
<input type="text" name="name" value="" class="form-control" required>
<button type="submit" id="send" class="btn btn-success">Submit</button>
</form>
this my js code:
$.ajax({
url: "/add_user",
type: "POST",
data: $('#ajax_f').serialize(),
dataType: "json",
success: function(response) {