Categories

Thursday, April 25, 2024
#919814419350 therichposts@gmail.com
AjaxJavascriptJquery

FormData example with ajax file upload

FormData example with ajax file upload

Hello, welcome to therichpost.com. In this post, I will tell you FormData example with ajax file upload. I personally like jquery very much. Most of my code is full with jquery. When I stuck in php or other language then that stuckness I remove with jquery code.

if we want to send data from one page to other without page refresh then we can use ajax with jquery.
if we want to send file upload data then we will use FormData.

Please check the working example code and you can this into you script:

var formData = new FormData();
formData.append(‘updoc’, $(‘input[type=file]’)[0].files[0]);

formData.append(‘options’, $(“input[name=options]”).val());

$.ajax({type:”POST”,url:”url”,

data:formData,

contentType: false,

cache: false,

processData: false,

success: function ( data ) {

alert( data );

}
});

There are so many jquery code, tricks and i will let you know all. Please do comment if you any query related to this post. Thank you. Therichpost.com

therichpost
the authortherichpost
Hello to all. Welcome to therichpost.com. Myself Ajay Malhotra and I am freelance full stack developer. I love coding. I know WordPress, Core php, Angularjs, Angular 14, Angular 15, Angular 16, Angular 17, Bootstrap 5, Nodejs, Laravel, Codeigniter, Shopify, Squarespace, jQuery, Google Map Api, Vuejs, Reactjs, Big commerce etc.

5 Comments

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.