{"id":28547,"date":"2021-01-19T11:53:28","date_gmt":"2021-01-19T19:53:28","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=28547"},"modified":"2021-01-22T03:21:56","modified_gmt":"2021-01-22T11:21:56","slug":"jquery-selectors","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/jquery-selectors\/","title":{"rendered":"A Closer Look at jQuery Selectors"},"content":{"rendered":"\n<p>Selectors are the foundation of the jQuery library. They will always be used when using jQuery to manipulate the DOM. Selectors operate as a function to return a matching element. They come with the jQuery library and are ready to use out of the box.&nbsp;<br><\/p>\n\n\n\n<p>The selector function has a distinctive look. It begins with a dollar sign ($) followed by parentheses.&nbsp;&nbsp;<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>$()<\/pre><\/div>\n\n\n\n<p>What is accepted inside the parentheses is the name, id, or class of the element to be selected. After an element is selected, methods to change that element can be chained onto the selector function using dot notation.<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>$('p').html(&quot;Some new content rendered from jQuery&quot;)<\/pre><\/div>\n\n\n\n<p>This selects all of the paragraph elements on the page and replaces the HTML inside of them with a string. jQuery was built to quickly access any element or elements and use methods to make the desired changes. This functionality takes the guesswork out of creating a dynamic web application.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is a jQuery Selector?<\/h2>\n\n\n\n<p>The jQuery selector is a function that comes with the jQuery library. It is required to use jQuery. It accepts the name, class, and\/or id as a string for its parameters. From here, a jQuery method can be chained on to perform a manipulation of the DOM.<br><\/p>\n\n\n\n<p>Why is this useful? jQuery introduces shorthand built in to the methods that can be verbose in plain JavaScript, using a selector to directly refer to an element rather than calling <em>document.querySelector() <\/em>or <em>document.querySelectorAll()<\/em>.<br><\/p>\n\n\n\n<p>A jQuery selector reduces the JavaScript <code>querySelector()<\/code> to <code>$()<\/code>. It is implicitly called on the document rather than explicitly, which also reduces required code.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">jQuery Selector Syntax<\/h2>\n\n\n\n<p>So far we\u2019ve talked abstractly about the jQuery selector function. We now know that it is a function that directly references a specified DOM element. All that is required is the element name, class, or id. The name can also be combined with a class or id depending on how your HTML is organized.<br><\/p>\n\n\n\n<p>The selector can be as general as selecting all of the elements on the page:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>$('*')<\/pre><\/div>\n\n\n\n<p>Using jQuery like this is generally not recommended. A more common practice is selecting a group of the same elements. For example, if we wanted to change all of the paragraph elements we could select them directly:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>$('p')<\/pre><\/div>\n\n\n\n<p>We have now selected all &lt;p&gt; tags on the current page. From here, we chain a jQuery method to make a change.<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>$('p').html('Replace original paragraph HTML with this.')<\/pre><\/div>\n\n\n\n<p>The <code>html()<\/code> method replaces the HTML attributes of all selected &lt;p&gt; tags.<br><\/p>\n\n\n\n<p>What if we only wanted a specific paragraph element? Suppose we had multiple &lt;p&gt; tags. One of them has an id of \u2018new-content.\u2019 We can select it directly.<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>$('p#new-content')<\/pre><\/div>\n\n\n\n<p>The jQuery selectors use CSS references to the elements (# = id, . = class). Now only the paragraph element with the id of \u2018new-content\u2019 is selected and ready to be changed.&nbsp;<br><\/p>\n\n\n\n<p>Finally lets select an element with an assigned class. Our app has several &lt;div&gt; elements. A few are wrapped inside a &lt;div&gt; with the class of \u2018main-content\u2019. If we want to select the main content to dynamically change, we pass the name and class to the selector.<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>$('div.main-content')<\/pre><\/div>\n\n\n\n<p>Now all of the content wrapped in the selected &lt;div&gt; is ready to be manipulated.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The jQuery selector function is what drives the library. It is essential to know how to work with the selector function and how to chain the jQuery methods to it to realize the full power of jQuery. We learned what the jQuery selector is and the syntax involved in selecting elements.<br><\/p>\n\n\n\n<p>By now, you should have a clear understanding of what the jQuery selector is and how to use it. From here, practice using selectors and chaining jQuery methods to it for some real fun! Happy coding!<\/p>\n","protected":false},"excerpt":{"rendered":"Selectors are the foundation of the jQuery library. They will always be used when using jQuery to manipulate the DOM. Selectors operate as a function to return a matching element. They come with the jQuery library and are ready to use out of the box.&nbsp; The selector function has a distinctive look. It begins with&hellip;","protected":false},"author":104,"featured_media":23400,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[11933],"tags":[],"class_list":{"0":"post-28547","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-javascript"},"acf":{"post_sub_title":"","sprint_id":"","query_class":"JavaScript","school_sft":"","parent_sft":"","school_privacy_policy":"","has_review":null,"is_sponser_post":"","is_guest_post":""},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.4 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>A Closer Look at jQuery Selectors | Career Karma<\/title>\n<meta name=\"description\" content=\"jQuery selectors are a mainstay in the jQuery library. Selectors are required to make a query. Learn how to get started in this guide.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/careerkarma.com\/blog\/jquery-selectors\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"A Closer Look at jQuery Selectors\" \/>\n<meta property=\"og:description\" content=\"jQuery selectors are a mainstay in the jQuery library. Selectors are required to make a query. Learn how to get started in this guide.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/jquery-selectors\/\" \/>\n<meta property=\"og:site_name\" content=\"Career Karma\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/facebook.com\/careerkarmaapp\" \/>\n<meta property=\"article:published_time\" content=\"2021-01-19T19:53:28+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-01-22T11:21:56+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/altumcode-dC6Pb2JdAqs-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"704\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Ryan Manchester\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@career_karma\" \/>\n<meta name=\"twitter:site\" content=\"@career_karma\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ryan Manchester\" \/>\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:\\\/\\\/careerkarma.com\\\/blog\\\/jquery-selectors\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/jquery-selectors\\\/\"},\"author\":{\"name\":\"Ryan Manchester\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/92fd52a503f77fc058ec2d0666da9bd5\"},\"headline\":\"A Closer Look at jQuery Selectors\",\"datePublished\":\"2021-01-19T19:53:28+00:00\",\"dateModified\":\"2021-01-22T11:21:56+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/jquery-selectors\\\/\"},\"wordCount\":631,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/jquery-selectors\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/altumcode-dC6Pb2JdAqs-unsplash.jpg\",\"articleSection\":[\"JavaScript\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/jquery-selectors\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/jquery-selectors\\\/\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/jquery-selectors\\\/\",\"name\":\"A Closer Look at jQuery Selectors | Career Karma\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/jquery-selectors\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/jquery-selectors\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/altumcode-dC6Pb2JdAqs-unsplash.jpg\",\"datePublished\":\"2021-01-19T19:53:28+00:00\",\"dateModified\":\"2021-01-22T11:21:56+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/92fd52a503f77fc058ec2d0666da9bd5\"},\"description\":\"jQuery selectors are a mainstay in the jQuery library. Selectors are required to make a query. Learn how to get started in this guide.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/jquery-selectors\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/jquery-selectors\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/jquery-selectors\\\/#primaryimage\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/altumcode-dC6Pb2JdAqs-unsplash.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/altumcode-dC6Pb2JdAqs-unsplash.jpg\",\"width\":1000,\"height\":704},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/jquery-selectors\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"JavaScript\",\"item\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/javascript\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"A Closer Look at jQuery Selectors\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/\",\"name\":\"Career Karma\",\"description\":\"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/92fd52a503f77fc058ec2d0666da9bd5\",\"name\":\"Ryan Manchester\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/12\\\/ryan-manchester-150x150.jpg\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/12\\\/ryan-manchester-150x150.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/12\\\/ryan-manchester-150x150.jpg\",\"caption\":\"Ryan Manchester\"},\"description\":\"Ryan is a technical writer at Career Karma, where he covers programming languages, technology, and web development. The Texas native earned his Bachelor's of Music Composition from the University of North Texas. Ryan is currently pursuing further education in web development, aiming to graduate from Flatiron School with a certification in full stack web development. Since joining the Career Karma team in November 2020, Ryan has used his expertise to cover topics like React and Ruby on Rails.\",\"sameAs\":[\"http:\\\/\\\/www.ryanmanchester.info\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/ryan-manchester-6537a630\\\/\"],\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/author\\\/ryan-manchester\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"A Closer Look at jQuery Selectors | Career Karma","description":"jQuery selectors are a mainstay in the jQuery library. Selectors are required to make a query. Learn how to get started in this guide.","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:\/\/careerkarma.com\/blog\/jquery-selectors\/","og_locale":"en_US","og_type":"article","og_title":"A Closer Look at jQuery Selectors","og_description":"jQuery selectors are a mainstay in the jQuery library. Selectors are required to make a query. Learn how to get started in this guide.","og_url":"https:\/\/careerkarma.com\/blog\/jquery-selectors\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2021-01-19T19:53:28+00:00","article_modified_time":"2021-01-22T11:21:56+00:00","og_image":[{"width":1000,"height":704,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/altumcode-dC6Pb2JdAqs-unsplash.jpg","type":"image\/jpeg"}],"author":"Ryan Manchester","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"Ryan Manchester","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/jquery-selectors\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/jquery-selectors\/"},"author":{"name":"Ryan Manchester","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/92fd52a503f77fc058ec2d0666da9bd5"},"headline":"A Closer Look at jQuery Selectors","datePublished":"2021-01-19T19:53:28+00:00","dateModified":"2021-01-22T11:21:56+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/jquery-selectors\/"},"wordCount":631,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/jquery-selectors\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/altumcode-dC6Pb2JdAqs-unsplash.jpg","articleSection":["JavaScript"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/jquery-selectors\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/jquery-selectors\/","url":"https:\/\/careerkarma.com\/blog\/jquery-selectors\/","name":"A Closer Look at jQuery Selectors | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/jquery-selectors\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/jquery-selectors\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/altumcode-dC6Pb2JdAqs-unsplash.jpg","datePublished":"2021-01-19T19:53:28+00:00","dateModified":"2021-01-22T11:21:56+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/92fd52a503f77fc058ec2d0666da9bd5"},"description":"jQuery selectors are a mainstay in the jQuery library. Selectors are required to make a query. Learn how to get started in this guide.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/jquery-selectors\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/jquery-selectors\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/jquery-selectors\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/altumcode-dC6Pb2JdAqs-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/altumcode-dC6Pb2JdAqs-unsplash.jpg","width":1000,"height":704},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/jquery-selectors\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/careerkarma.com\/blog\/"},{"@type":"ListItem","position":2,"name":"JavaScript","item":"https:\/\/careerkarma.com\/blog\/javascript\/"},{"@type":"ListItem","position":3,"name":"A Closer Look at jQuery Selectors"}]},{"@type":"WebSite","@id":"https:\/\/careerkarma.com\/blog\/#website","url":"https:\/\/careerkarma.com\/blog\/","name":"Career Karma","description":"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/careerkarma.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/92fd52a503f77fc058ec2d0666da9bd5","name":"Ryan Manchester","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/12\/ryan-manchester-150x150.jpg","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/12\/ryan-manchester-150x150.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/12\/ryan-manchester-150x150.jpg","caption":"Ryan Manchester"},"description":"Ryan is a technical writer at Career Karma, where he covers programming languages, technology, and web development. The Texas native earned his Bachelor's of Music Composition from the University of North Texas. Ryan is currently pursuing further education in web development, aiming to graduate from Flatiron School with a certification in full stack web development. Since joining the Career Karma team in November 2020, Ryan has used his expertise to cover topics like React and Ruby on Rails.","sameAs":["http:\/\/www.ryanmanchester.info\/","https:\/\/www.linkedin.com\/in\/ryan-manchester-6537a630\/"],"url":"https:\/\/careerkarma.com\/blog\/author\/ryan-manchester\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/28547","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/users\/104"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=28547"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/28547\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/23400"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=28547"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=28547"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=28547"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}