{"id":995,"date":"2022-10-05T13:44:46","date_gmt":"2022-10-05T08:14:46","guid":{"rendered":"https:\/\/jassweb.com\/new22\/solved-jquery-create-multiple-dom-elements-inside-a-programmatically-created-parent-element\/"},"modified":"2022-10-05T13:44:46","modified_gmt":"2022-10-05T08:14:46","slug":"solved-jquery-create-multiple-dom-elements-inside-a-programmatically-created-parent-element-2","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-jquery-create-multiple-dom-elements-inside-a-programmatically-created-parent-element-2\/","title":{"rendered":"[Solved] Jquery \u2013 Create multiple DOM elements inside a programmatically created parent element"},"content":{"rendered":"<h2> Introduction <\/h2>\n<p>[ad_1]<\/p>\n<p>JQuery is a powerful JavaScript library that allows developers to create dynamic webpages and applications. One of the most useful features of JQuery is its ability to create multiple DOM elements inside a programmatically created parent element. This allows developers to create complex HTML structures quickly and easily. In this article, we will discuss how to use JQuery to create multiple DOM elements inside a programmatically created parent element. We will also discuss some of the best practices for creating these elements and how to use them in your webpages.<\/p>\n<h2> Solution<\/h2>\n<p><\/p>\n<p>\/\/ Create a parent element<br \/>\nlet parentElement = $(&#8216;<\/p>\n<div>&#8216;);<\/p>\n<p>\/\/ Create multiple child elements<br \/>\nlet childElement1 = $(&#8216;<\/p>\n<p>&#8216;);<br \/>\nlet childElement2 = $(&#8216;<span>&#8216;);<br \/>\nlet childElement3 = $(&#8216;<\/p>\n<h1>&#8216;);<\/p>\n<p>\/\/ Append the child elements to the parent element<br \/>\nparentElement.append(childElement1, childElement2, childElement3); <\/p>\n<p><\/p>\n<div class=\"entry-content\" itemprop=\"text\">\n<script async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-1088640234840270\" crossorigin=\"anonymous\"><\/script><\/p>\n<p><script><\/p>\n<p><\/script><\/p>\n<p>\n<\/p>\n<div id=\"answer-57696396\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"57696396\" data-parentid=\"57682841\" data-score=\"1\" data-position-on-page=\"2\" data-highest-scored=\"1\" data-question-has-accepted-highest-score=\"1\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<div class=\"post-layout\">\n<div class=\"votecell post-layout--left\"><\/div>\n<div class=\"answercell post-layout--right\">\n<div class=\"s-prose js-post-body\" itemprop=\"text\">\n<p>In the end @Taplar had the suggestion for the appropriate solution. I had hoped to find a solution that worked with the code I shared originally which documentation can be found here: <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/api.jquery.com\/jQuery\/#jQuery2\">https:\/\/api.jquery.com\/jQuery\/#jQuery2<\/a>.<br \/>\nUnfortunately it appears to be a code style that hasn\u2019t drawn the right person\u2019s attention or it\u2019s not widely liked. Here\u2019s a quick rundown of what I went with using a template literal.<\/p>\n<pre><code>&lt;div id=\"documentationMenuList\"&gt;&lt;\/div&gt;\n\n&lt;script&gt;\nfunction buildMenu(menu_items, name){\n    var $ul = $('&lt;ul class=\"list-10\"&gt;&lt;\/ul&gt;');\n\n    $.each(menu_items, function (key, value) {\n        createCollapsableList(value, $ul, name);\n    });\n\n    $ul.appendTo(\"#\"+name+\"MenuList\");\n}\n\nfunction createCollapsableList(item, $collapsableList, name) {\n    if (item) {     \n        if (item.title) {\n            $collapsableList.append(\n            `&lt;li name=\"${name}Menu${item.parent_id ? item.parent_id : 0}\"&gt;\n                &lt;table width=\"100%\"&gt;\n                    &lt;tbody&gt;\n                        &lt;tr&gt;\n                            &lt;td&gt;\n                                &lt;a href=\"#\" data-toggle=\"dropdownArrow\" data-target=\"${name}Menu${item.id}\"&gt;&lt;i class=\"fa fa-minus-square-o\"&gt;&lt;\/i&gt;&lt;\/a&gt; \n                                &lt;a href=\"#\" class=\"editItem\" data-target=\"${name}_${item.id}\" data-type=\"${name}\" id=\"${name}Menu${item.id}\"&gt;${item.title}&lt;\/a&gt; \n                                &lt;a href=\"#deleteModal\"&gt;&lt;span class=\"fa fa-trash-o deleteMenuItem\" data-toggle=\"tooltip\" title=\"Delete\"&gt;&lt;\/span&gt;&lt;\/a&gt;\n                            &lt;\/td&gt;\n                        &lt;\/tr&gt;\n                    &lt;\/tbody&gt;\n                &lt;\/table&gt;\n            &lt;\/li&gt;`);\n        }\n        if (item.children) {\n            var $sublist = $('&lt;ul class=\"list-10\"&gt;&lt;\/ul&gt;');\n            $.each(item.children, function (key, value) {\n                createCollapsableList(value, $sublist);\n            });\n            $collapsableList.append($sublist);\n        }\n    }\n}\n$(function(){\n    buildMenu(menu_items, 'documentation');\n});\n&lt;\/script&gt;\n<\/code><\/pre>\n<\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p> <span class=\"d-none\" itemprop=\"commentCount\">1<\/span> <\/p>\n<\/div>\n<\/div>\n<p>solved Jquery \u2013 Create multiple DOM elements inside a programmatically created parent element <\/p>\n<p><script async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-1088640234840270\" crossorigin=\"anonymous\"><\/script><\/p>\n<p><script><\/p>\n<p><\/script> <\/div>\n<p>[ad_2]<\/p>\n<p>Creating multiple DOM elements inside a programmatically created parent element can be a tricky task. Fortunately, jQuery makes it easy to do with its <code>.append()<\/code> method. The <code>.append()<\/code> method allows you to add new elements to the end of an existing element. This means that you can create a parent element, and then add multiple child elements to it.<\/p>\n<p>To create a parent element programmatically, you can use the <code>$('&lt;element&gt;')<\/code> syntax. This will create a new element with the specified tag name. For example, to create a <code>&lt;div&gt;<\/code> element, you can use the following code:<\/p>\n<pre><code>var parentElement = $('&lt;div&gt;');\n<\/code><\/pre>\n<p>Once you have created the parent element, you can use the <code>.append()<\/code> method to add child elements to it. For example, to add a <code>&lt;p&gt;<\/code> element, you can use the following code:<\/p>\n<pre><code>parentElement.append('&lt;p&gt;This is a paragraph.&lt;\/p&gt;');\n<\/code><\/pre>\n<p>You can also use the <code>.append()<\/code> method to add multiple elements at once. For example, to add two <code>&lt;p&gt;<\/code> elements, you can use the following code:<\/p>\n<pre><code>parentElement.append('&lt;p&gt;This is the first paragraph.&lt;\/p&gt;&lt;p&gt;This is the second paragraph.&lt;\/p&gt;');\n<\/code><\/pre>\n<p>As you can see, jQuery makes it easy to create multiple DOM elements inside a programmatically created parent element. With the <code>.append()<\/code> method, you can quickly and easily add multiple elements to an existing element.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction [ad_1] JQuery is a powerful JavaScript library that allows developers to create dynamic webpages and applications. One of the most useful features of JQuery is its ability to create multiple DOM elements inside a programmatically created parent element. This allows developers to create complex HTML structures quickly and easily. In this article, we will &#8230; <a title=\"[Solved] Jquery \u2013 Create multiple DOM elements inside a programmatically created parent element\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-jquery-create-multiple-dom-elements-inside-a-programmatically-created-parent-element-2\/\" aria-label=\"More on [Solved] Jquery \u2013 Create multiple DOM elements inside a programmatically created parent element\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320],"tags":[346,388,356,494],"class_list":["post-995","post","type-post","status-publish","format-standard","hentry","category-solved","tag-html","tag-jquery","tag-json","tag-recursion"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>[Solved] Jquery \u2013 Create multiple DOM elements inside a programmatically created parent element - JassWeb<\/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:\/\/jassweb.com\/solved\/solved-jquery-create-multiple-dom-elements-inside-a-programmatically-created-parent-element-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] Jquery \u2013 Create multiple DOM elements inside a programmatically created parent element - JassWeb\" \/>\n<meta property=\"og:description\" content=\"Introduction [ad_1] JQuery is a powerful JavaScript library that allows developers to create dynamic webpages and applications. One of the most useful features of JQuery is its ability to create multiple DOM elements inside a programmatically created parent element. This allows developers to create complex HTML structures quickly and easily. In this article, we will ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-jquery-create-multiple-dom-elements-inside-a-programmatically-created-parent-element-2\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2022-10-05T08:14:46+00:00\" \/>\n<meta name=\"author\" content=\"Kirat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kirat\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-jquery-create-multiple-dom-elements-inside-a-programmatically-created-parent-element-2\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-jquery-create-multiple-dom-elements-inside-a-programmatically-created-parent-element-2\\\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#\\\/schema\\\/person\\\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] Jquery \u2013 Create multiple DOM elements inside a programmatically created parent element\",\"datePublished\":\"2022-10-05T08:14:46+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-jquery-create-multiple-dom-elements-inside-a-programmatically-created-parent-element-2\\\/\"},\"wordCount\":401,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#organization\"},\"keywords\":[\"html\",\"jquery\",\"json\",\"recursion\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-jquery-create-multiple-dom-elements-inside-a-programmatically-created-parent-element-2\\\/\",\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-jquery-create-multiple-dom-elements-inside-a-programmatically-created-parent-element-2\\\/\",\"name\":\"[Solved] Jquery \u2013 Create multiple DOM elements inside a programmatically created parent element - JassWeb\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#website\"},\"datePublished\":\"2022-10-05T08:14:46+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-jquery-create-multiple-dom-elements-inside-a-programmatically-created-parent-element-2\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-jquery-create-multiple-dom-elements-inside-a-programmatically-created-parent-element-2\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-jquery-create-multiple-dom-elements-inside-a-programmatically-created-parent-element-2\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] Jquery \u2013 Create multiple DOM elements inside a programmatically created parent element\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#website\",\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/\",\"name\":\"JassWeb\",\"description\":\"Build High-quality Websites\",\"publisher\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#organization\",\"name\":\"Jass Web\",\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/jassweb.com\\\/wp-content\\\/uploads\\\/2021\\\/02\\\/jass-website-logo-1.png\",\"contentUrl\":\"https:\\\/\\\/jassweb.com\\\/wp-content\\\/uploads\\\/2021\\\/02\\\/jass-website-logo-1.png\",\"width\":693,\"height\":132,\"caption\":\"Jass Web\"},\"image\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#\\\/schema\\\/person\\\/65c9c7b7958150c0dc8371fa35dd7c31\",\"name\":\"Kirat\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/wp-content\\\/litespeed\\\/avatar\\\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777008400\",\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/wp-content\\\/litespeed\\\/avatar\\\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777008400\",\"contentUrl\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/wp-content\\\/litespeed\\\/avatar\\\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777008400\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\\\/\\\/jassweb.com\"],\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/author\\\/jaspritsinghghumangmail-com\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] Jquery \u2013 Create multiple DOM elements inside a programmatically created parent element - JassWeb","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:\/\/jassweb.com\/solved\/solved-jquery-create-multiple-dom-elements-inside-a-programmatically-created-parent-element-2\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] Jquery \u2013 Create multiple DOM elements inside a programmatically created parent element - JassWeb","og_description":"Introduction [ad_1] JQuery is a powerful JavaScript library that allows developers to create dynamic webpages and applications. One of the most useful features of JQuery is its ability to create multiple DOM elements inside a programmatically created parent element. This allows developers to create complex HTML structures quickly and easily. In this article, we will ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-jquery-create-multiple-dom-elements-inside-a-programmatically-created-parent-element-2\/","og_site_name":"JassWeb","article_published_time":"2022-10-05T08:14:46+00:00","author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-jquery-create-multiple-dom-elements-inside-a-programmatically-created-parent-element-2\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-jquery-create-multiple-dom-elements-inside-a-programmatically-created-parent-element-2\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] Jquery \u2013 Create multiple DOM elements inside a programmatically created parent element","datePublished":"2022-10-05T08:14:46+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-jquery-create-multiple-dom-elements-inside-a-programmatically-created-parent-element-2\/"},"wordCount":401,"commentCount":0,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"keywords":["html","jquery","json","recursion"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-jquery-create-multiple-dom-elements-inside-a-programmatically-created-parent-element-2\/","url":"https:\/\/jassweb.com\/solved\/solved-jquery-create-multiple-dom-elements-inside-a-programmatically-created-parent-element-2\/","name":"[Solved] Jquery \u2013 Create multiple DOM elements inside a programmatically created parent element - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"datePublished":"2022-10-05T08:14:46+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-jquery-create-multiple-dom-elements-inside-a-programmatically-created-parent-element-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-jquery-create-multiple-dom-elements-inside-a-programmatically-created-parent-element-2\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-jquery-create-multiple-dom-elements-inside-a-programmatically-created-parent-element-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] Jquery \u2013 Create multiple DOM elements inside a programmatically created parent element"}]},{"@type":"WebSite","@id":"https:\/\/jassweb.com\/solved\/#website","url":"https:\/\/jassweb.com\/solved\/","name":"JassWeb","description":"Build High-quality Websites","publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jassweb.com\/solved\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jassweb.com\/solved\/#organization","name":"Jass Web","url":"https:\/\/jassweb.com\/solved\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/","url":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","contentUrl":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","width":693,"height":132,"caption":"Jass Web"},"image":{"@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31","name":"Kirat","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777008400","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777008400","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777008400","caption":"Kirat"},"sameAs":["http:\/\/jassweb.com"],"url":"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/995","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/comments?post=995"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/995\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=995"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=995"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=995"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}