{"id":1104,"date":"2012-10-16T11:35:16","date_gmt":"2012-10-16T11:35:16","guid":{"rendered":"http:\/\/webkul.com\/blog\/?p=1104"},"modified":"2021-07-16T14:39:55","modified_gmt":"2021-07-16T14:39:55","slug":"send-images-through-ajax","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/send-images-through-ajax\/","title":{"rendered":"Send Images through ajax"},"content":{"rendered":"\n<p>1. In this tutorial we are going to tell you that how to send an image through ajax to process.<\/p>\n\n\n\n<p>2. In the following code you can process image as soon as it is selected.<\/p>\n\n\n\n<p>3. First &nbsp;You need to Select image file through following line of html code<\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:xml\">&lt;input type=\"file\" id=\"image_to_upload\"\/&gt;<\/pre>\n\n\n\n<p>4. After that you need to write the following jQuery code to catch this event.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:js\">&lt;script type=\"text\/javascript\"&gt;\n\tjQuery.noConflict();\t\n\tformdata = new FormData();\t\t\n\tjQuery(\"#image_to_upload\").on(\"change\", function() {\n\t\tvar file = this.files[0];\n\t\tif (formdata) {\n\t\t\tformdata.append(\"image\", file);\n\t\t\tjQuery.ajax({\n\t\t\t\turl: \"destination_ajax_file.php\",\n\t\t\t\ttype: \"POST\",\n\t\t\t\tdata: formdata,\n\t\t\t\tprocessData: false,\n\t\t\t\tcontentType: false,\n\t\t\t\tsuccess:function(){}\n\t\t\t});\n\t\t}\t\t\t\t\t\t\n\t});\t\n&lt;\/script&gt;<\/pre>\n\n\n\n<p>5. In the destination ajax file you can access image by the following variable<\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:php\">$_FILES[\"image\"][\"name\"]<\/pre>\n\n\n\n<p>6.That is it Save And Enjoy!!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>1. In this tutorial we are going to tell you that how to send an image through ajax to process. 2. In the following code you can process image as soon as it is selected. 3. First &nbsp;You need to Select image file through following line of html code &lt;input type=&#8221;file&#8221; id=&#8221;image_to_upload&#8221;\/&gt; 4. After that <a href=\"https:\/\/webkul.com\/blog\/send-images-through-ajax\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[79],"tags":[195],"class_list":["post-1104","post","type-post","status-publish","format-standard","hentry","category-jquery","tag-jquery-image"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Send Images through ajax - Webkul Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/send-images-through-ajax\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Send Images through ajax - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"1. In this tutorial we are going to tell you that how to send an image through ajax to process. 2. In the following code you can process image as soon as it is selected. 3. First &nbsp;You need to Select image file through following line of html code &lt;input type=&quot;file&quot; id=&quot;image_to_upload&quot;\/&gt; 4. After that [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/send-images-through-ajax\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2012-10-16T11:35:16+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-07-16T14:39:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-og.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Ratnesh\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ratnesh\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/send-images-through-ajax\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/send-images-through-ajax\/\"},\"author\":{\"name\":\"Ratnesh\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/98fa964dace2c6affe08c231d20914f7\"},\"headline\":\"Send Images through ajax\",\"datePublished\":\"2012-10-16T11:35:16+00:00\",\"dateModified\":\"2021-07-16T14:39:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/send-images-through-ajax\/\"},\"wordCount\":84,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"keywords\":[\"jquery Image\"],\"articleSection\":[\"jQuery\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/send-images-through-ajax\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/send-images-through-ajax\/\",\"url\":\"https:\/\/webkul.com\/blog\/send-images-through-ajax\/\",\"name\":\"Send Images through ajax - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"datePublished\":\"2012-10-16T11:35:16+00:00\",\"dateModified\":\"2021-07-16T14:39:55+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/send-images-through-ajax\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/send-images-through-ajax\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/send-images-through-ajax\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Send Images through ajax\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/98fa964dace2c6affe08c231d20914f7\",\"name\":\"Ratnesh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/87f852615fec6dd5521718a501298d8eeba3c4882fea89c1eda3b272e53406d3?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/87f852615fec6dd5521718a501298d8eeba3c4882fea89c1eda3b272e53406d3?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Ratnesh\"},\"sameAs\":[\"http:\/\/webkul.com\"],\"url\":\"https:\/\/webkul.com\/blog\/author\/ratnesh\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Send Images through ajax - Webkul Blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/webkul.com\/blog\/send-images-through-ajax\/","og_locale":"en_US","og_type":"article","og_title":"Send Images through ajax - Webkul Blog","og_description":"1. In this tutorial we are going to tell you that how to send an image through ajax to process. 2. In the following code you can process image as soon as it is selected. 3. First &nbsp;You need to Select image file through following line of html code &lt;input type=\"file\" id=\"image_to_upload\"\/&gt; 4. After that [...]","og_url":"https:\/\/webkul.com\/blog\/send-images-through-ajax\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2012-10-16T11:35:16+00:00","article_modified_time":"2021-07-16T14:39:55+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-og.png","type":"image\/png"}],"author":"Ratnesh","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Ratnesh","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/send-images-through-ajax\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/send-images-through-ajax\/"},"author":{"name":"Ratnesh","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/98fa964dace2c6affe08c231d20914f7"},"headline":"Send Images through ajax","datePublished":"2012-10-16T11:35:16+00:00","dateModified":"2021-07-16T14:39:55+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/send-images-through-ajax\/"},"wordCount":84,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"keywords":["jquery Image"],"articleSection":["jQuery"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/send-images-through-ajax\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/send-images-through-ajax\/","url":"https:\/\/webkul.com\/blog\/send-images-through-ajax\/","name":"Send Images through ajax - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"datePublished":"2012-10-16T11:35:16+00:00","dateModified":"2021-07-16T14:39:55+00:00","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/send-images-through-ajax\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/send-images-through-ajax\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/send-images-through-ajax\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Send Images through ajax"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/98fa964dace2c6affe08c231d20914f7","name":"Ratnesh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/87f852615fec6dd5521718a501298d8eeba3c4882fea89c1eda3b272e53406d3?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/87f852615fec6dd5521718a501298d8eeba3c4882fea89c1eda3b272e53406d3?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Ratnesh"},"sameAs":["http:\/\/webkul.com"],"url":"https:\/\/webkul.com\/blog\/author\/ratnesh\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/1104","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=1104"}],"version-history":[{"count":2,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/1104\/revisions"}],"predecessor-version":[{"id":296805,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/1104\/revisions\/296805"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=1104"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=1104"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=1104"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}