{"id":54233,"date":"2016-07-13T13:42:16","date_gmt":"2016-07-13T13:42:16","guid":{"rendered":"http:\/\/webkul.com\/blog\/?p=54233"},"modified":"2016-07-14T04:34:02","modified_gmt":"2016-07-14T04:34:02","slug":"set-jcrop-width-height-as-preview-image-container","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/set-jcrop-width-height-as-preview-image-container\/","title":{"rendered":"Resolved &#8211; Jcrop set width &amp; height as preview image container"},"content":{"rendered":"<p><a href=\"http:\/\/webkul.com\/blog\/?p=54233&amp;preview=true\">set jcrop width\u00a0 height as preview image container<\/a><\/p>\n<p>Final Result :<\/p>\n<p><img decoding=\"async\" class=\"alignnone size-full wp-image-54240\" src=\"http:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/rsz_1screenshot_from_2016-07-13_135503.png\" alt=\"rsz_1screenshot_from_2016-07-13_135503\" width=\"783\" height=\"494\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/rsz_1screenshot_from_2016-07-13_135503.png 783w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/rsz_1screenshot_from_2016-07-13_135503-250x158.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/rsz_1screenshot_from_2016-07-13_135503-300x189.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/rsz_1screenshot_from_2016-07-13_135503-768x485.png 768w\" sizes=\"(max-width: 783px) 100vw, 783px\" loading=\"lazy\" \/><\/p>\n<p>&nbsp;<\/p>\n<p>How to do it &#8212;<\/p>\n<p><img decoding=\"async\" class=\"alignnone size-full wp-image-54248\" src=\"http:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/rsz_1screenshot_from_2016-07-13_135439.png\" alt=\"rsz_1screenshot_from_2016-07-13_135439\" width=\"985\" height=\"460\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/rsz_1screenshot_from_2016-07-13_135439.png 985w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/rsz_1screenshot_from_2016-07-13_135439-250x117.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/rsz_1screenshot_from_2016-07-13_135439-300x140.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/rsz_1screenshot_from_2016-07-13_135439-768x359.png 768w\" sizes=\"(max-width: 985px) 100vw, 985px\" loading=\"lazy\" \/><\/p>\n<p>Avoid assigning any width height to the image used for jcrop. This sometimes may cause chrome to misplace the jcrop container.<\/p>\n<pre class=\"brush:php\">&lt;div id=\"image_prev_container\"&gt;\r\n  &lt;img src=\"#\" alt=\"\" id=\"image_prev\"&gt;\r\n&lt;\/div&gt;\r\n&lt;input type=\"file\" id=\"my_file\" accept=\"image\/*\"&gt;<\/pre>\n<p>Apply Jcrop on the selected file<\/p>\n<pre class=\"brush:js\">$(function(){\r\n  $('#my_file').on('change', function() {\r\n\u00a0\u00a0 \u00a0var file_name = $(this).val();\r\n\u00a0\u00a0 \u00a0if(file_name.length &gt; 0) {\r\n\u00a0\u00a0 \u00a0\u00a0 addJcrop(this);\r\n  });\r\n  var addJcrop = function(input) {\r\n    if ($('#image_prev').data('Jcrop')) {\r\n      \/\/ if need destroy jcrop or its created dom element here\r\n      $('#image_prev').data('Jcrop').destroy();\r\n    }\r\n    \r\n    \/\/ this will add the src in image_prev as uploaded\r\n    if (input.files &amp;&amp; input.files[0]) {\r\n      var reader = new FileReader();\r\n      reader.onload = function (e) {\r\n        $(\"#image_prev\").attr('src', e.target.result);\r\n        var box_width = $('#image_prev_container').width();\r\n        $('#image_prev').Jcrop({\r\n          setSelect: [0, 0, 500],\r\n    \t  minSize: [80, 320],\r\n          aspectRatio: 4\/1,\r\n          onSelect: getCoordinates,\r\n          onChange: getCoordinates,\r\n          keySupport: false,\r\n          boxWidth: box_width\r\n         });\r\n      }\r\n      reader.readAsDataURL(input.files[0]);\r\n    }\r\n  }\r\n  var getCoordinates = function(c){\r\n    $('#x').val(c.x);\r\n    $('#y').val(c.y);\r\n    $('#w').val(c.w);\r\n    $('#h').val(c.h);\r\n  };\r\n});<\/pre>\n<p>In chrome or IE change function fired only if the file you selected is different. You may add the below code if need to crop the same file again<\/p>\n<pre class=\"brush:js\">$('#seller_banner').on('click', function() {\r\n  $(this).val(\"\");\r\n});<\/pre>\n<p><strong>Note: <\/strong>If you are going to get width of child as &#8220;$(&#8216;.parent .child&#8217;).width();&#8221; please prefer to use &#8220;$(&#8216;.parent&#8217;).find(&#8216;.child&#8217;).width()&#8221; instead.<\/p>\n<p><a href=\"https:\/\/jsfiddle.net\/L9sb07pj\/\">View Demo Here<\/a>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 cheer&#8230; \ud83d\ude42<\/p>\n<p><img decoding=\"async\" class=\"alignnone size-full wp-image-54240\" src=\"http:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/rsz_1screenshot_from_2016-07-13_135503.png\" alt=\"rsz_1screenshot_from_2016-07-13_135503\" width=\"783\" height=\"494\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/rsz_1screenshot_from_2016-07-13_135503.png 783w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/rsz_1screenshot_from_2016-07-13_135503-250x158.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/rsz_1screenshot_from_2016-07-13_135503-300x189.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/rsz_1screenshot_from_2016-07-13_135503-768x485.png 768w\" sizes=\"(max-width: 783px) 100vw, 783px\" loading=\"lazy\" \/><\/p>\n","protected":false},"excerpt":{"rendered":"<p>set jcrop width\u00a0 height as preview image container Final Result : &nbsp; How to do it &#8212; Avoid assigning any width height to the image used for jcrop. This sometimes may cause chrome to misplace the jcrop container. &lt;div id=&#8221;image_prev_container&#8221;&gt; &lt;img src=&#8221;#&#8221; alt=&#8221;&#8221; id=&#8221;image_prev&#8221;&gt; &lt;\/div&gt; &lt;input type=&#8221;file&#8221; id=&#8221;my_file&#8221; accept=&#8221;image\/*&#8221;&gt; Apply Jcrop on the selected file <a href=\"https:\/\/webkul.com\/blog\/set-jcrop-width-height-as-preview-image-container\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":98,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2383,79,174],"tags":[3339,3338,3337],"class_list":["post-54233","post","type-post","status-publish","format-standard","hentry","category-blog","category-jquery","category-plugin-2","tag-crop-image","tag-crop-image-with-jcrop","tag-jcrop"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>set jcrop width height as preview image container - resolved<\/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\/set-jcrop-width-height-as-preview-image-container\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"set jcrop width height as preview image container - resolved\" \/>\n<meta property=\"og:description\" content=\"set jcrop width\u00a0 height as preview image container Final Result : &nbsp; How to do it &#8212; Avoid assigning any width height to the image used for jcrop. This sometimes may cause chrome to misplace the jcrop container. &lt;div id=&quot;image_prev_container&quot;&gt; &lt;img src=&quot;#&quot; alt=&quot;&quot; id=&quot;image_prev&quot;&gt; &lt;\/div&gt; &lt;input type=&quot;file&quot; id=&quot;my_file&quot; accept=&quot;image\/*&quot;&gt; Apply Jcrop on the selected file [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/set-jcrop-width-height-as-preview-image-container\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:author\" content=\"fb.com\/desiswagger92\" \/>\n<meta property=\"article:published_time\" content=\"2016-07-13T13:42:16+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2016-07-14T04:34:02+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/webkul.com\/blog\/wp-content\/uploads\/2016\/07\/rsz_1screenshot_from_2016-07-13_135503.png\" \/>\n<meta name=\"author\" content=\"Kuldeep Singh\" \/>\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=\"Kuldeep Singh\" \/>\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\/set-jcrop-width-height-as-preview-image-container\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/set-jcrop-width-height-as-preview-image-container\/\"},\"author\":{\"name\":\"Kuldeep Singh\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/4109a343009d7a1db1c91ac194d5466e\"},\"headline\":\"Resolved &#8211; Jcrop set width &amp; height as preview image container\",\"datePublished\":\"2016-07-13T13:42:16+00:00\",\"dateModified\":\"2016-07-14T04:34:02+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/set-jcrop-width-height-as-preview-image-container\/\"},\"wordCount\":113,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/set-jcrop-width-height-as-preview-image-container\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/webkul.com\/blog\/wp-content\/uploads\/2016\/07\/rsz_1screenshot_from_2016-07-13_135503.png\",\"keywords\":[\"crop image\",\"crop image with jcrop\",\"jcrop\"],\"articleSection\":[\"blog\",\"jQuery\",\"Plugin\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/set-jcrop-width-height-as-preview-image-container\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/set-jcrop-width-height-as-preview-image-container\/\",\"url\":\"https:\/\/webkul.com\/blog\/set-jcrop-width-height-as-preview-image-container\/\",\"name\":\"set jcrop width height as preview image container - resolved\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/set-jcrop-width-height-as-preview-image-container\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/set-jcrop-width-height-as-preview-image-container\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/webkul.com\/blog\/wp-content\/uploads\/2016\/07\/rsz_1screenshot_from_2016-07-13_135503.png\",\"datePublished\":\"2016-07-13T13:42:16+00:00\",\"dateModified\":\"2016-07-14T04:34:02+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/set-jcrop-width-height-as-preview-image-container\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/set-jcrop-width-height-as-preview-image-container\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/set-jcrop-width-height-as-preview-image-container\/#primaryimage\",\"url\":\"http:\/\/webkul.com\/blog\/wp-content\/uploads\/2016\/07\/rsz_1screenshot_from_2016-07-13_135503.png\",\"contentUrl\":\"http:\/\/webkul.com\/blog\/wp-content\/uploads\/2016\/07\/rsz_1screenshot_from_2016-07-13_135503.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/set-jcrop-width-height-as-preview-image-container\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Resolved &#8211; Jcrop set width &amp; height as preview image container\"}]},{\"@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\/4109a343009d7a1db1c91ac194d5466e\",\"name\":\"Kuldeep Singh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/121700ebbedc4c56b2a90701a6d730507f74d29f9ab149945bc9f5b66a1d4516?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\/121700ebbedc4c56b2a90701a6d730507f74d29f9ab149945bc9f5b66a1d4516?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Kuldeep Singh\"},\"sameAs\":[\"fb.com\/desiswagger92\"],\"url\":\"https:\/\/webkul.com\/blog\/author\/kuldeep-singh218webkul-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"set jcrop width height as preview image container - resolved","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\/set-jcrop-width-height-as-preview-image-container\/","og_locale":"en_US","og_type":"article","og_title":"set jcrop width height as preview image container - resolved","og_description":"set jcrop width\u00a0 height as preview image container Final Result : &nbsp; How to do it &#8212; Avoid assigning any width height to the image used for jcrop. This sometimes may cause chrome to misplace the jcrop container. &lt;div id=\"image_prev_container\"&gt; &lt;img src=\"#\" alt=\"\" id=\"image_prev\"&gt; &lt;\/div&gt; &lt;input type=\"file\" id=\"my_file\" accept=\"image\/*\"&gt; Apply Jcrop on the selected file [...]","og_url":"https:\/\/webkul.com\/blog\/set-jcrop-width-height-as-preview-image-container\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_author":"fb.com\/desiswagger92","article_published_time":"2016-07-13T13:42:16+00:00","article_modified_time":"2016-07-14T04:34:02+00:00","og_image":[{"url":"http:\/\/webkul.com\/blog\/wp-content\/uploads\/2016\/07\/rsz_1screenshot_from_2016-07-13_135503.png","type":"","width":"","height":""}],"author":"Kuldeep Singh","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Kuldeep Singh","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/set-jcrop-width-height-as-preview-image-container\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/set-jcrop-width-height-as-preview-image-container\/"},"author":{"name":"Kuldeep Singh","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/4109a343009d7a1db1c91ac194d5466e"},"headline":"Resolved &#8211; Jcrop set width &amp; height as preview image container","datePublished":"2016-07-13T13:42:16+00:00","dateModified":"2016-07-14T04:34:02+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/set-jcrop-width-height-as-preview-image-container\/"},"wordCount":113,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/set-jcrop-width-height-as-preview-image-container\/#primaryimage"},"thumbnailUrl":"http:\/\/webkul.com\/blog\/wp-content\/uploads\/2016\/07\/rsz_1screenshot_from_2016-07-13_135503.png","keywords":["crop image","crop image with jcrop","jcrop"],"articleSection":["blog","jQuery","Plugin"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/set-jcrop-width-height-as-preview-image-container\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/set-jcrop-width-height-as-preview-image-container\/","url":"https:\/\/webkul.com\/blog\/set-jcrop-width-height-as-preview-image-container\/","name":"set jcrop width height as preview image container - resolved","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/set-jcrop-width-height-as-preview-image-container\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/set-jcrop-width-height-as-preview-image-container\/#primaryimage"},"thumbnailUrl":"http:\/\/webkul.com\/blog\/wp-content\/uploads\/2016\/07\/rsz_1screenshot_from_2016-07-13_135503.png","datePublished":"2016-07-13T13:42:16+00:00","dateModified":"2016-07-14T04:34:02+00:00","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/set-jcrop-width-height-as-preview-image-container\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/set-jcrop-width-height-as-preview-image-container\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/set-jcrop-width-height-as-preview-image-container\/#primaryimage","url":"http:\/\/webkul.com\/blog\/wp-content\/uploads\/2016\/07\/rsz_1screenshot_from_2016-07-13_135503.png","contentUrl":"http:\/\/webkul.com\/blog\/wp-content\/uploads\/2016\/07\/rsz_1screenshot_from_2016-07-13_135503.png"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/set-jcrop-width-height-as-preview-image-container\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Resolved &#8211; Jcrop set width &amp; height as preview image container"}]},{"@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\/4109a343009d7a1db1c91ac194d5466e","name":"Kuldeep Singh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/121700ebbedc4c56b2a90701a6d730507f74d29f9ab149945bc9f5b66a1d4516?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\/121700ebbedc4c56b2a90701a6d730507f74d29f9ab149945bc9f5b66a1d4516?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Kuldeep Singh"},"sameAs":["fb.com\/desiswagger92"],"url":"https:\/\/webkul.com\/blog\/author\/kuldeep-singh218webkul-com\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/54233","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\/98"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=54233"}],"version-history":[{"count":14,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/54233\/revisions"}],"predecessor-version":[{"id":54356,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/54233\/revisions\/54356"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=54233"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=54233"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=54233"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}