{"id":33761,"date":"2023-02-13T20:00:13","date_gmt":"2023-02-13T14:30:13","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-requesting-content-without-reloading-the-page-closed\/"},"modified":"2023-02-13T20:00:13","modified_gmt":"2023-02-13T14:30:13","slug":"solved-requesting-content-without-reloading-the-page-closed","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-requesting-content-without-reloading-the-page-closed\/","title":{"rendered":"[Solved] Requesting content without reloading the page [closed]"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-11462384\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"11462384\" data-parentid=\"11461442\" data-score=\"0\" data-position-on-page=\"1\" 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>Try this: <a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/shaquin.tk\/experiments\/select-ajax2.html\">http:\/\/shaquin.tk\/experiments\/select-ajax2.html<\/a>.<\/p>\n<p><strong>HTML:<\/strong><\/p>\n<pre><code>&lt;select name=\"select-choice\" id=\"select-choice\"&gt;\n    &lt;optgroup label=\"News\"&gt;\n        &lt;option value=\"feature\"&gt;Feature&lt;\/option&gt;\n        &lt;option value=\"current\"&gt;Current&lt;\/option&gt;\n        &lt;option value=\"research\"&gt;Research&lt;\/option&gt;\n    &lt;\/optgroup&gt;\n    &lt;optgroup label=\"Archive\"&gt;\n        &lt;option value=\"archive\"&gt;Archive&lt;\/option&gt;\n    &lt;\/optgroup&gt;\n    &lt;optgroup label=\"Video\"&gt;\n        &lt;option value=\"video\"&gt;Video&lt;\/option&gt;\n    &lt;\/optgroup&gt;\n    &lt;optgroup label=\"Submit\"&gt;\n        &lt;option value=\"story\"&gt;Story&lt;\/option&gt;\n        &lt;option value=\"event\"&gt;Event&lt;\/option&gt;\n    &lt;\/optgroup&gt;\n&lt;\/select&gt;\n&lt;div id=\"article\"&gt;Please select an article to view.&lt;\/div&gt;\n<\/code><\/pre>\n<p><strong>JS:<\/strong><\/p>\n<pre><code>var origText=\"\";\n$(document).ready(function() {\n    origText = $('#article').text();\n    $('select').on('change', changed);\n});\nfunction changed(e) {\n    $('#article').html('&lt;span class=\"loading\"&gt;Loading...&lt;\/span&gt;');\n    $('#article').load('content.php', $.param({0: e.target.value, 1: origText}));\n}\n<\/code><\/pre>\n<p><strong>PHP:<\/strong><\/p>\n<pre><code>&lt;?php\n$selected = $_GET[0];\n$articles = array(\n        '' =&gt; $_GET[1],\n        'feature' =&gt; 'Feature article goes here',\n        'current' =&gt; '&lt;p&gt;Lorem ipsum dolor sit amet, denique laetare ... se est Apollonius.&lt;\/p&gt;',\n        'research' =&gt; 'You selected &lt;code&gt;research&lt;\/code&gt;',\n        'archive' =&gt; 'Archives',\n        'video' =&gt; '&lt;div style=\"font-size:48pt;font-weight:bold;font-style:italic;background:red;text-align:center;padding:20px;margin:10px;border-radius:20px;-moz-border-radius:20px;-webkit-border-radius:20px;\"&gt;Video&lt;\/div&gt;',\n        'story' =&gt; 'Submit a story',\n        'event' =&gt; 'Submit an event'\n    );\n$article = $articles[$selected];\necho $article;\n?&gt;\n<\/code><\/pre>\n<p><strong>CSS (optional):<\/strong><\/p>\n<pre><code>body {\n    background: #ccc;\n    text-align: center\n}\n#article {\n    padding: 30px;\n    margin: 20px;\n    text-align: left;\n    background: #eee;\n    text-shadow: 1px 1px #fff;\n    text-shadow: 0 0 3px #fff;\n    border-radius: 8px;\n    -moz-border-radius: 8px;\n    -webkit-border-radius: 8px;\n}\n.loading {\n    text-transform: uppercase;\n    font-size: 15pt;\n    text-shadow: 1px 1px #f00, 1px 2px #f00, 2px 2px #f00, 3px 3px #f00;\n}\n<\/code><\/pre>\n<p>In the PHP, you would probably want to fetch the text from a database: <a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/php.net\/mysqli\">PHP &#8211; MySQLi<\/a>.<\/p>\n<\/p><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\">2<\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved Requesting content without reloading the page [closed] <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] Try this: http:\/\/shaquin.tk\/experiments\/select-ajax2.html. HTML: &lt;select name=&#8221;select-choice&#8221; id=&#8221;select-choice&#8221;&gt; &lt;optgroup label=&#8221;News&#8221;&gt; &lt;option value=&#8221;feature&#8221;&gt;Feature&lt;\/option&gt; &lt;option value=&#8221;current&#8221;&gt;Current&lt;\/option&gt; &lt;option value=&#8221;research&#8221;&gt;Research&lt;\/option&gt; &lt;\/optgroup&gt; &lt;optgroup label=&#8221;Archive&#8221;&gt; &lt;option value=&#8221;archive&#8221;&gt;Archive&lt;\/option&gt; &lt;\/optgroup&gt; &lt;optgroup label=&#8221;Video&#8221;&gt; &lt;option value=&#8221;video&#8221;&gt;Video&lt;\/option&gt; &lt;\/optgroup&gt; &lt;optgroup label=&#8221;Submit&#8221;&gt; &lt;option value=&#8221;story&#8221;&gt;Story&lt;\/option&gt; &lt;option value=&#8221;event&#8221;&gt;Event&lt;\/option&gt; &lt;\/optgroup&gt; &lt;\/select&gt; &lt;div id=&#8221;article&#8221;&gt;Please select an article to view.&lt;\/div&gt; JS: var origText=&#8221;&#8221;; $(document).ready(function() { origText = $(&#8216;#article&#8217;).text(); $(&#8216;select&#8217;).on(&#8216;change&#8217;, changed); }); function changed(e) &#8230; <a title=\"[Solved] Requesting content without reloading the page [closed]\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-requesting-content-without-reloading-the-page-closed\/\" aria-label=\"More on [Solved] Requesting content without reloading the page [closed]\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320],"tags":[334,346,333,388,6013],"class_list":["post-33761","post","type-post","status-publish","format-standard","hentry","category-solved","tag-ajax","tag-html","tag-javascript","tag-jquery","tag-optgroup"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>[Solved] Requesting content without reloading the page [closed] - 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-requesting-content-without-reloading-the-page-closed\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] Requesting content without reloading the page [closed] - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] Try this: http:\/\/shaquin.tk\/experiments\/select-ajax2.html. HTML: &lt;select name=&quot;select-choice&quot; id=&quot;select-choice&quot;&gt; &lt;optgroup label=&quot;News&quot;&gt; &lt;option value=&quot;feature&quot;&gt;Feature&lt;\/option&gt; &lt;option value=&quot;current&quot;&gt;Current&lt;\/option&gt; &lt;option value=&quot;research&quot;&gt;Research&lt;\/option&gt; &lt;\/optgroup&gt; &lt;optgroup label=&quot;Archive&quot;&gt; &lt;option value=&quot;archive&quot;&gt;Archive&lt;\/option&gt; &lt;\/optgroup&gt; &lt;optgroup label=&quot;Video&quot;&gt; &lt;option value=&quot;video&quot;&gt;Video&lt;\/option&gt; &lt;\/optgroup&gt; &lt;optgroup label=&quot;Submit&quot;&gt; &lt;option value=&quot;story&quot;&gt;Story&lt;\/option&gt; &lt;option value=&quot;event&quot;&gt;Event&lt;\/option&gt; &lt;\/optgroup&gt; &lt;\/select&gt; &lt;div id=&quot;article&quot;&gt;Please select an article to view.&lt;\/div&gt; JS: var origText=&quot;&quot;; $(document).ready(function() { origText = $(&#039;#article&#039;).text(); $(&#039;select&#039;).on(&#039;change&#039;, changed); }); function changed(e) ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-requesting-content-without-reloading-the-page-closed\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2023-02-13T14:30:13+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=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-requesting-content-without-reloading-the-page-closed\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-requesting-content-without-reloading-the-page-closed\\\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#\\\/schema\\\/person\\\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] Requesting content without reloading the page [closed]\",\"datePublished\":\"2023-02-13T14:30:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-requesting-content-without-reloading-the-page-closed\\\/\"},\"wordCount\":48,\"publisher\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#organization\"},\"keywords\":[\"ajax\",\"html\",\"javascript\",\"jquery\",\"optgroup\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-requesting-content-without-reloading-the-page-closed\\\/\",\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-requesting-content-without-reloading-the-page-closed\\\/\",\"name\":\"[Solved] Requesting content without reloading the page [closed] - JassWeb\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#website\"},\"datePublished\":\"2023-02-13T14:30:13+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-requesting-content-without-reloading-the-page-closed\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-requesting-content-without-reloading-the-page-closed\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-requesting-content-without-reloading-the-page-closed\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] Requesting content without reloading the page [closed]\"}]},{\"@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=1776403586\",\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/wp-content\\\/litespeed\\\/avatar\\\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586\",\"contentUrl\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/wp-content\\\/litespeed\\\/avatar\\\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\\\/\\\/jassweb.com\"],\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/author\\\/jaspritsinghghumangmail-com\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] Requesting content without reloading the page [closed] - 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-requesting-content-without-reloading-the-page-closed\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] Requesting content without reloading the page [closed] - JassWeb","og_description":"[ad_1] Try this: http:\/\/shaquin.tk\/experiments\/select-ajax2.html. HTML: &lt;select name=\"select-choice\" id=\"select-choice\"&gt; &lt;optgroup label=\"News\"&gt; &lt;option value=\"feature\"&gt;Feature&lt;\/option&gt; &lt;option value=\"current\"&gt;Current&lt;\/option&gt; &lt;option value=\"research\"&gt;Research&lt;\/option&gt; &lt;\/optgroup&gt; &lt;optgroup label=\"Archive\"&gt; &lt;option value=\"archive\"&gt;Archive&lt;\/option&gt; &lt;\/optgroup&gt; &lt;optgroup label=\"Video\"&gt; &lt;option value=\"video\"&gt;Video&lt;\/option&gt; &lt;\/optgroup&gt; &lt;optgroup label=\"Submit\"&gt; &lt;option value=\"story\"&gt;Story&lt;\/option&gt; &lt;option value=\"event\"&gt;Event&lt;\/option&gt; &lt;\/optgroup&gt; &lt;\/select&gt; &lt;div id=\"article\"&gt;Please select an article to view.&lt;\/div&gt; JS: var origText=\"\"; $(document).ready(function() { origText = $('#article').text(); $('select').on('change', changed); }); function changed(e) ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-requesting-content-without-reloading-the-page-closed\/","og_site_name":"JassWeb","article_published_time":"2023-02-13T14:30:13+00:00","author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-requesting-content-without-reloading-the-page-closed\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-requesting-content-without-reloading-the-page-closed\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] Requesting content without reloading the page [closed]","datePublished":"2023-02-13T14:30:13+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-requesting-content-without-reloading-the-page-closed\/"},"wordCount":48,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"keywords":["ajax","html","javascript","jquery","optgroup"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-requesting-content-without-reloading-the-page-closed\/","url":"https:\/\/jassweb.com\/solved\/solved-requesting-content-without-reloading-the-page-closed\/","name":"[Solved] Requesting content without reloading the page [closed] - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"datePublished":"2023-02-13T14:30:13+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-requesting-content-without-reloading-the-page-closed\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-requesting-content-without-reloading-the-page-closed\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-requesting-content-without-reloading-the-page-closed\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] Requesting content without reloading the page [closed]"}]},{"@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=1776403586","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586","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\/33761","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=33761"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/33761\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=33761"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=33761"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=33761"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}