{"id":126350,"date":"2018-05-25T14:17:35","date_gmt":"2018-05-25T14:17:35","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=126350"},"modified":"2021-07-16T14:35:09","modified_gmt":"2021-07-16T14:35:09","slug":"html-templating-using-jquery","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/html-templating-using-jquery\/","title":{"rendered":"HTML templating using JQuery"},"content":{"rendered":"\n<blockquote><p>JQuery is a preeminent library of Javascript that provides you robust methods to manipulate DOM. The main aim of this article to let you know the technique of manipulating DOM and provide a wonderful user interface experience.<\/p><p>JQuery templating let you render JSON to HTML elements. Suppose you have a video records having a title and image in your database and you want to show a video listing in your portal just like other video&nbsp;channels does. Here in this blog, I will show you how to make a template and render it using JSON without using any external library like handle.js<\/p><h4><img decoding=\"async\" class=\"alignnone wp-image-126408 size-full\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/05\/video-listing.png\" alt=\"\" width=\"1115\" height=\"219\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/05\/video-listing.png 1115w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/05\/video-listing-250x49.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/05\/video-listing-300x59.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/05\/video-listing-768x151.png 768w\" sizes=\"(max-width: 1115px) 100vw, 1115px\" loading=\"lazy\" \/><\/h4><p>Below is the JSON response to my API&nbsp;http:\/\/ashok.webkul.com\/vikash\/video-list.php for video listings<\/p><pre class=\"brush:js\">[\n   {\n      \"title\":\"vidya vox jukebox 2017\",\n      \"img\":\"https:\\\/\\\/i.ytimg.com\\\/vi\\\/QfpgUe7jsr0\\\/hqdefault.jpg?sqp=-oaymwEWCMQBEG5IWvKriqkDCQgBFQAAiEIYAQ==&amp;rs=AOn4CLC69mA9WAL1i8K63zwiZSKOH1SKBg\"\n   },\n   {\n      \"title\":\"The Best Songs Of Spotify\",\n      \"img\":\"https:\\\/\\\/i.ytimg.com\\\/vi\\\/hRgLyEPBxEc\\\/hqdefault.jpg?sqp=-oaymwEWCMQBEG5IWvKriqkDCQgBFQAAiEIYAQ==&amp;rs=AOn4CLCHauwQWwhKmH_JOAIajWYHNmx4Tg\"\n   },\n   {\n      \"title\":\"10 PLANTS THAT EAT ANIMALS\",\n      \"img\":\"https:\\\/\\\/i.ytimg.com\\\/vi\\\/oASwAfCsQEE\\\/hqdefault.jpg?sqp=-oaymwEWCMQBEG5IWvKriqkDCQgBFQAAiEIYAQ==&amp;rs=AOn4CLCJbGlEDzRNebP7LjchnX_31ukBhw\"\n   }\n]<\/pre><h4>Here are two way to make an interactive template<\/h4><h3>1. Using script tag<\/h3><pre class=\"brush:js\">&lt;html&gt;\n    &lt;head&gt;\n        &lt;link rel=\"stylesheet\" href=\"https:\/\/maxcdn.bootstrapcdn.com\/bootstrap\/3.3.7\/css\/bootstrap.min.css\"&gt;\n         \/\/using bootrap just for design purpose \n        &lt;script src=\"https:\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/3.2.1\/jquery.min.js\"&gt;&lt;\/script&gt;\n    &lt;\/head&gt;\n    &lt;body&gt;\n        &lt;div class=\"container\"&gt;\n            &lt;script id=\"blog\" type=\"template\"&gt;\n                &lt;div class=\"col-md-3\"&gt;\n                    &lt;div class=\"thumbnail\"&gt;\n                        &lt;img src=\"{{image}}\" class=\"img-rounded img-responsive\" width=\"100%\"&gt;&lt;\/img&gt;\n                        &lt;div class=\"caption\"&gt;\n                            &lt;p&gt;{{title}}&lt;\/p&gt;\n                        &lt;\/div&gt;\n                    &lt;\/div&gt;\n                &lt;\/div&gt;\n            &lt;\/script&gt; \n        &lt;\/div&gt;   \n        &lt;script&gt;\n         $(function() {\n            $.ajax({\n                url: 'http:\/\/ashok.webkul.com\/vikash\/video-list.php',\n                success: function(content) {\n                    var temp = $.trim($('#blog').html());\n                    $.each(JSON.parse(content), function(index, obj) {\n                        var x = temp.replace(\/{{title}}\/ig, obj.title).replace(\/{{image}}\/ig, obj.img);\n                        $('.container').append(x);\n                    });\n                }\n            })\n         });\n        &lt;\/script&gt;\n    &lt;\/body&gt;\n&lt;\/html&gt;<\/pre><p>I have written a thumbnail inside #blog script tag that will work as a template form me. I am using {{&nbsp; }} for wild card varianbles, You may put your own wildcard like what ever you want.<\/p><p>Consider code in line 9-18 inside ajax success function I am calling my template using #id<\/p><pre class=\"brush:js\">var temp = $.trim($('#blog').html());\n\n<\/pre><p>replace all the wild card variables with its corresponding values from the javascript object<\/p><pre class=\"brush:js\">var x = temp.replace(\/{{title}}\/ig, obj.title).replace(\/{{image}}\/ig, obj.img);<\/pre><h3 class=\"brush:xml\">2. Using placeholder<\/h3><pre class=\"brush:js\">&lt;html&gt;\n    &lt;head&gt;\n        &lt;link rel=\"stylesheet\" href=\"https:\/\/maxcdn.bootstrapcdn.com\/bootstrap\/3.3.7\/css\/bootstrap.min.css\"&gt;\n        &lt;script src=\"https:\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/3.2.1\/jquery.min.js\"&gt;&lt;\/script&gt;\n    &lt;\/head&gt;\n    &lt;body&gt;\n        &lt;div class=\"container\"&gt;&lt;\/div&gt;\n\n        &lt;script&gt;\n         $(function() {\n            $.ajax({\n                url: 'http:\/\/ashok.webkul.com\/vikash\/video-list.php',\n                success: function(content) {\n                    $.each(JSON.parse(content), function(index, obj) {\n                        $('.container').append(\n                            `&lt;div class=\"col-md-3\"&gt;\n                                &lt;div class=\"thumbnail\"&gt;\n                                    &lt;img src=\"${obj.img}\" class=\"img-rounded img-responsive\" width=\"100%\"&gt;&lt;\/img&gt;\n                                    &lt;div class=\"caption\"&gt;\n                                        &lt;p&gt;${obj.title}&lt;\/p&gt;\n                                    &lt;\/div&gt;\n                                &lt;\/div&gt;\n                            &lt;\/div&gt;`\n                        );\n                    });\n                }\n            })\n         });\n        &lt;\/script&gt;\n    &lt;\/body&gt;\n&lt;\/html&gt;<\/pre><p>Thanks to javascript&#8217;s <a href=\"https:\/\/developer.mozilla.org\/en-US\/docs\/Web\/JavaScript\/Reference\/Template_literals\">template literal<\/a>&nbsp;back-tick <code>(` `)<\/code>&nbsp; and&nbsp;placeholder&nbsp;<code>${ }<\/code> that makes our task easier with respect to method 1. Here we just put our template thumbnail inside ajax success function and populate our placeholders with its corresponding values.<\/p><\/blockquote>\n","protected":false},"excerpt":{"rendered":"<p>JQuery is a preeminent library of Javascript that provides you robust methods to manipulate DOM. The main aim of this article to let you know the technique of manipulating DOM and provide a wonderful user interface experience. JQuery templating let you render JSON to HTML elements. Suppose you have a video records having a title <a href=\"https:\/\/webkul.com\/blog\/html-templating-using-jquery\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":89,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2383],"tags":[3877,7023],"class_list":["post-126350","post","type-post","status-publish","format-standard","hentry","category-blog","tag-jquery-templates","tag-template-literal"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>HTML templating using JQuery - Webkul Blog<\/title>\n<meta name=\"description\" content=\"The main aim of this article to let you know the technique of manipulating DOM using pre-built HTML templates and provide a wonderful user interface experience. JQuery templating let you render JSON to HTML elements.\" \/>\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\/html-templating-using-jquery\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"HTML templating using JQuery - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"The main aim of this article to let you know the technique of manipulating DOM using pre-built HTML templates and provide a wonderful user interface experience. JQuery templating let you render JSON to HTML elements.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/html-templating-using-jquery\/\" \/>\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=\"2018-05-25T14:17:35+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-07-16T14:35:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/05\/video-listing.png\" \/>\n<meta name=\"author\" content=\"Vikash Kumar\" \/>\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=\"Vikash Kumar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/html-templating-using-jquery\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/html-templating-using-jquery\/\"},\"author\":{\"name\":\"Vikash Kumar\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/d7f70f330fffd68db35e831c8914cf5d\"},\"headline\":\"HTML templating using JQuery\",\"datePublished\":\"2018-05-25T14:17:35+00:00\",\"dateModified\":\"2021-07-16T14:35:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/html-templating-using-jquery\/\"},\"wordCount\":247,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/html-templating-using-jquery\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/05\/video-listing.png\",\"keywords\":[\"jQuery Templates\",\"Template literal\"],\"articleSection\":[\"blog\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/html-templating-using-jquery\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/html-templating-using-jquery\/\",\"url\":\"https:\/\/webkul.com\/blog\/html-templating-using-jquery\/\",\"name\":\"HTML templating using JQuery - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/html-templating-using-jquery\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/html-templating-using-jquery\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/05\/video-listing.png\",\"datePublished\":\"2018-05-25T14:17:35+00:00\",\"dateModified\":\"2021-07-16T14:35:09+00:00\",\"description\":\"The main aim of this article to let you know the technique of manipulating DOM using pre-built HTML templates and provide a wonderful user interface experience. JQuery templating let you render JSON to HTML elements.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/html-templating-using-jquery\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/html-templating-using-jquery\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/html-templating-using-jquery\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/05\/video-listing.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/05\/video-listing.png\",\"width\":\"1115\",\"height\":\"219\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/html-templating-using-jquery\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"HTML templating using JQuery\"}]},{\"@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\/d7f70f330fffd68db35e831c8914cf5d\",\"name\":\"Vikash Kumar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/1fb252a35b6ab96bb0d2b55e9647731fd7a3bb80f68323b1ab223f269b2373c9?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\/1fb252a35b6ab96bb0d2b55e9647731fd7a3bb80f68323b1ab223f269b2373c9?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Vikash Kumar\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/vikash-kumar43\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"HTML templating using JQuery - Webkul Blog","description":"The main aim of this article to let you know the technique of manipulating DOM using pre-built HTML templates and provide a wonderful user interface experience. JQuery templating let you render JSON to HTML elements.","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\/html-templating-using-jquery\/","og_locale":"en_US","og_type":"article","og_title":"HTML templating using JQuery - Webkul Blog","og_description":"The main aim of this article to let you know the technique of manipulating DOM using pre-built HTML templates and provide a wonderful user interface experience. JQuery templating let you render JSON to HTML elements.","og_url":"https:\/\/webkul.com\/blog\/html-templating-using-jquery\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2018-05-25T14:17:35+00:00","article_modified_time":"2021-07-16T14:35:09+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/05\/video-listing.png","type":"","width":"","height":""}],"author":"Vikash Kumar","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Vikash Kumar","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/html-templating-using-jquery\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/html-templating-using-jquery\/"},"author":{"name":"Vikash Kumar","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/d7f70f330fffd68db35e831c8914cf5d"},"headline":"HTML templating using JQuery","datePublished":"2018-05-25T14:17:35+00:00","dateModified":"2021-07-16T14:35:09+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/html-templating-using-jquery\/"},"wordCount":247,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/html-templating-using-jquery\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/05\/video-listing.png","keywords":["jQuery Templates","Template literal"],"articleSection":["blog"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/html-templating-using-jquery\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/html-templating-using-jquery\/","url":"https:\/\/webkul.com\/blog\/html-templating-using-jquery\/","name":"HTML templating using JQuery - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/html-templating-using-jquery\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/html-templating-using-jquery\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/05\/video-listing.png","datePublished":"2018-05-25T14:17:35+00:00","dateModified":"2021-07-16T14:35:09+00:00","description":"The main aim of this article to let you know the technique of manipulating DOM using pre-built HTML templates and provide a wonderful user interface experience. JQuery templating let you render JSON to HTML elements.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/html-templating-using-jquery\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/html-templating-using-jquery\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/html-templating-using-jquery\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/05\/video-listing.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/05\/video-listing.png","width":"1115","height":"219"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/html-templating-using-jquery\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"HTML templating using JQuery"}]},{"@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\/d7f70f330fffd68db35e831c8914cf5d","name":"Vikash Kumar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/1fb252a35b6ab96bb0d2b55e9647731fd7a3bb80f68323b1ab223f269b2373c9?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\/1fb252a35b6ab96bb0d2b55e9647731fd7a3bb80f68323b1ab223f269b2373c9?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Vikash Kumar"},"url":"https:\/\/webkul.com\/blog\/author\/vikash-kumar43\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/126350","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\/89"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=126350"}],"version-history":[{"count":24,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/126350\/revisions"}],"predecessor-version":[{"id":296787,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/126350\/revisions\/296787"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=126350"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=126350"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=126350"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}