{"id":21321,"date":"2022-11-13T01:50:09","date_gmt":"2022-11-12T20:20:09","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-what-are-the-types-of-jquery-selectors-closed\/"},"modified":"2022-11-13T01:50:09","modified_gmt":"2022-11-12T20:20:09","slug":"solved-what-are-the-types-of-jquery-selectors-closed","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-what-are-the-types-of-jquery-selectors-closed\/","title":{"rendered":"[Solved] What are the types of jquery selectors? [closed]"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-21081697\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"21081697\" data-parentid=\"21081694\" data-score=\"4\" 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>These are the jquery selectors (as of jQuery 1.10 and jQuery 2.0):<\/p>\n<ul>\n<li><strong>All Selector (<code>\"*\"<\/code>)<\/strong><br \/>\nSelects all elements.  <\/li>\n<li><strong><code>:animated<\/code> Selector<\/strong><br \/>\nSelect all elements that are in the progress of an animation at the time the selector is run.  <\/li>\n<li><strong>Attribute Contains Prefix Selector <code>[name|=\"value\"]<\/code><\/strong><br \/>\nSelects elements that have the specified attribute with a value either equal to a given string or starting with that string followed by a hyphen (-).  <\/li>\n<li><strong>Attribute Contains Selector <code>[name*=\"value\"]<\/code><\/strong><br \/>\nSelects elements that have the specified attribute with a value containing the a given substring.  <\/li>\n<li><strong>Attribute Contains Word Selector <code>[name~=\"value\"]<\/code><\/strong><br \/>\nSelects elements that have the specified attribute with a value containing a given word, delimited by spaces.  <\/li>\n<li><strong>Attribute Ends With Selector <code>[name$=\"value\"]<\/code><\/strong><br \/>\nSelects elements that have the specified attribute with a value ending exactly with a given string. The comparison is case sensitive.  <\/li>\n<li><strong>Attribute Equals Selector <code>[name=\"value\"]<\/code><\/strong><br \/>\nSelects elements that have the specified attribute with a value exactly equal to a certain value.  <\/li>\n<li><strong>Attribute Not Equal Selector <code>[name!=\"value\"]<\/code><\/strong><br \/>\nSelect elements that either don\u2019t have the specified attribute, or do have the specified attribute but not with a certain value.  <\/li>\n<li><strong>Attribute Starts With Selector <code>[name^=\"value\"]<\/code><\/strong><br \/>\nSelects elements that have the specified attribute with a value beginning exactly with a given string.  <\/li>\n<li><strong><code>:button<\/code> Selector<\/strong><br \/>\nSelects all button elements and elements of type button.  <\/li>\n<li><strong><code>:checkbox<\/code> Selector<\/strong><br \/>\nSelects all elements of type checkbox.  <\/li>\n<li><strong><code>:checked<\/code> Selector<\/strong><br \/>\nMatches all elements that are checked or selected.  <\/li>\n<li><strong>Child Selector (<code>\"parent &gt; child\"<\/code>)<\/strong><br \/>\nSelects all direct child elements specified by \u201cchild\u201d of elements specified by \u201cparent\u201d.  <\/li>\n<li><strong>Class Selector (\u201c.class\u201d)<\/strong><br \/>\nSelects all elements with the given class.  <\/li>\n<li><strong><code>:contains()<\/code> Selector<\/strong><br \/>\nSelect all elements that contain the specified text.  <\/li>\n<li><strong>Descendant Selector (<code>\"ancestor descendant\"<\/code>)<\/strong><br \/>\nSelects all elements that are descendants of a given ancestor.  <\/li>\n<li><strong>:disabled Selector<\/strong><br \/>\nSelects all elements that are disabled.  <\/li>\n<li><strong>Element Selector (\u201celement\u201d)<\/strong><br \/>\nSelects all elements with the given tag name.  <\/li>\n<li><strong>:empty Selector<\/strong><br \/>\nSelect all elements that have no children (including text nodes).  <\/li>\n<li><strong>:enabled Selector<\/strong><br \/>\nSelects all elements that are enabled.  <\/li>\n<li><strong>:eq() Selector<\/strong><br \/>\nSelect the element at index n within the matched set.  <\/li>\n<li><strong>:even Selector<\/strong><br \/>\nSelects even elements, zero-indexed. See also odd.  <\/li>\n<li><strong>:file Selector<\/strong><br \/>\nSelects all elements of type file.  <\/li>\n<li><strong>:first-child Selector<\/strong><br \/>\nSelects all elements that are the first child of their parent.  <\/li>\n<li><strong>:first-of-type Selector<\/strong><br \/>\nSelects all elements that are the first among siblings of the same element name.  <\/li>\n<li><strong>:first Selector<\/strong><br \/>\nSelects the first matched element.  <\/li>\n<li><strong>:focus Selector<\/strong><br \/>\nSelects element if it is currently focused.  <\/li>\n<li><strong>:gt() Selector<\/strong><br \/>\nSelect all elements at an index greater than index within the matched set.  <\/li>\n<li><strong>Has Attribute Selector [name]<\/strong><br \/>\nSelects elements that have the specified attribute, with any value.  <\/li>\n<li><strong>:has() Selector<\/strong><br \/>\nSelects elements which contain at least one element that matches the specified selector.  <\/li>\n<li><strong>:header Selector<\/strong><br \/>\nSelects all elements that are headers, like h1, h2, h3 and so on.  <\/li>\n<li><strong>:hidden Selector<\/strong><br \/>\nSelects all elements that are hidden.  <\/li>\n<li><strong>ID Selector (\u201c#id\u201d)<\/strong><br \/>\nSelects a single element with the given id attribute.  <\/li>\n<li><strong>:image Selector<\/strong><br \/>\nSelects all elements of type image.  <\/li>\n<li><strong>:input Selector<\/strong><br \/>\nSelects all input, textarea, select and button elements.  <\/li>\n<li><strong>:lang() Selector<\/strong><br \/>\nSelects all elements of the specified language.  <\/li>\n<li><strong>:last-child Selector<\/strong><br \/>\nSelects all elements that are the last child of their parent.  <\/li>\n<li><strong>:last-of-type Selector<\/strong><br \/>\nSelects all elements that are the last among siblings of the same element name.  <\/li>\n<li><strong>:last Selector<\/strong><br \/>\nSelects the last matched element.  <\/li>\n<li><strong>:lt() Selector<\/strong><br \/>\nSelect all elements at an index less than index within the matched set.  <\/li>\n<li>**Multiple Attribute Selector [name=&#8221;value&#8221;][name2=&#8221;value2&#8243;]<br \/>\nMatches elements that match all of the specified attribute filters.  <\/li>\n<li><strong>Multiple Selector (\u201cselector1, selector2, selectorN\u201d)<\/strong><br \/>\nSelects the combined results of all the specified selectors.  <\/li>\n<li><strong>Next Adjacent Selector (\u201cprev + next\u201d)<\/strong><br \/>\nSelects all next elements matching \u201cnext\u201d that are immediately preceded by a sibling \u201cprev\u201d.  <\/li>\n<li><strong>Next Siblings Selector (\u201cprev ~ siblings\u201d)<\/strong><br \/>\nSelects all sibling elements that follow after the \u201cprev\u201d element, have the same parent, and match the filtering \u201csiblings\u201d selector.  <\/li>\n<li><strong>:not() Selector<\/strong><br \/>\nSelects all elements that do not match the given selector.  <\/li>\n<li><strong>:nth-child() Selector<\/strong><br \/>\nSelects all elements that are the nth-child of their parent.  <\/li>\n<li><strong>:nth-last-child() Selector<\/strong><br \/>\nSelects all elements that are the nth-child of their parent, counting from the last element to the first.  <\/li>\n<li><strong>:nth-last-of-type() Selector<\/strong><br \/>\nSelects all elements that are the nth-child of their parent, counting from the last element to the first.  <\/li>\n<li><strong>:nth-of-type() Selector<\/strong><br \/>\nSelects all elements that are the nth child of their parent in relation to siblings with the same element name.  <\/li>\n<li><strong>:odd Selector<\/strong><br \/>\nSelects odd elements, zero-indexed. See also even.  <\/li>\n<li><strong>:only-child Selector<\/strong><br \/>\nSelects all elements that are the only child of their parent.  <\/li>\n<li><strong>:only-of-type Selector<\/strong><br \/>\nSelects all elements that have no siblings with the same element name.  <\/li>\n<li><strong>:parent Selector<\/strong><br \/>\nSelect all elements that have at least one child node (either an element or text).  <\/li>\n<li><strong>:password Selector<\/strong><br \/>\nSelects all elements of type password.  <\/li>\n<li><strong>:radio Selector<\/strong><br \/>\nSelects all elements of type radio.  <\/li>\n<li><strong>:reset Selector<\/strong><br \/>\nSelects all elements of type reset.  <\/li>\n<li><strong>:root Selector<\/strong><br \/>\nSelects the element that is the root of the document.  <\/li>\n<li><strong>:selected Selector<\/strong><br \/>\nSelects all elements that are selected.  <\/li>\n<li><strong>:submit Selector<\/strong><br \/>\nSelects all elements of type submit.  <\/li>\n<li><strong>:target Selector<\/strong><br \/>\nSelects the target element indicated by the fragment identifier of the document\u2019s URI.  <\/li>\n<li><strong>:text Selector<\/strong><br \/>\nSelects all elements of type text.  <\/li>\n<li><strong>:visible Selector<\/strong><br \/>\nSelects all elements that are visible.<\/li>\n<\/ul>\n<p>Source: <a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/api.jquery.com\/category\/selectors\/\">http:\/\/api.jquery.com\/category\/selectors\/<\/a><\/p>\n<\/p><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\">1<\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved What are the types of jquery selectors? [closed] <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] These are the jquery selectors (as of jQuery 1.10 and jQuery 2.0): All Selector (&#8220;*&#8221;) Selects all elements. :animated Selector Select all elements that are in the progress of an animation at the time the selector is run. Attribute Contains Prefix Selector [name|=&#8221;value&#8221;] Selects elements that have the specified attribute with a value either &#8230; <a title=\"[Solved] What are the types of jquery selectors? [closed]\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-what-are-the-types-of-jquery-selectors-closed\/\" aria-label=\"More on [Solved] What are the types of jquery selectors? [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":[388],"class_list":["post-21321","post","type-post","status-publish","format-standard","hentry","category-solved","tag-jquery"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[Solved] What are the types of jquery selectors? [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-what-are-the-types-of-jquery-selectors-closed\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] What are the types of jquery selectors? [closed] - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] These are the jquery selectors (as of jQuery 1.10 and jQuery 2.0): All Selector (&quot;*&quot;) Selects all elements. :animated Selector Select all elements that are in the progress of an animation at the time the selector is run. Attribute Contains Prefix Selector [name|=&quot;value&quot;] Selects elements that have the specified attribute with a value either ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-what-are-the-types-of-jquery-selectors-closed\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2022-11-12T20:20:09+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=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-what-are-the-types-of-jquery-selectors-closed\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-what-are-the-types-of-jquery-selectors-closed\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] What are the types of jquery selectors? [closed]\",\"datePublished\":\"2022-11-12T20:20:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-what-are-the-types-of-jquery-selectors-closed\/\"},\"wordCount\":860,\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"keywords\":[\"jquery\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-what-are-the-types-of-jquery-selectors-closed\/\",\"url\":\"https:\/\/jassweb.com\/solved\/solved-what-are-the-types-of-jquery-selectors-closed\/\",\"name\":\"[Solved] What are the types of jquery selectors? [closed] - JassWeb\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#website\"},\"datePublished\":\"2022-11-12T20:20:09+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-what-are-the-types-of-jquery-selectors-closed\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jassweb.com\/solved\/solved-what-are-the-types-of-jquery-selectors-closed\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-what-are-the-types-of-jquery-selectors-closed\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jassweb.com\/solved\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] What are the types of jquery selectors? [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\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\/\/jassweb.com\"],\"url\":\"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] What are the types of jquery selectors? [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-what-are-the-types-of-jquery-selectors-closed\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] What are the types of jquery selectors? [closed] - JassWeb","og_description":"[ad_1] These are the jquery selectors (as of jQuery 1.10 and jQuery 2.0): All Selector (\"*\") Selects all elements. :animated Selector Select all elements that are in the progress of an animation at the time the selector is run. Attribute Contains Prefix Selector [name|=\"value\"] Selects elements that have the specified attribute with a value either ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-what-are-the-types-of-jquery-selectors-closed\/","og_site_name":"JassWeb","article_published_time":"2022-11-12T20:20:09+00:00","author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-what-are-the-types-of-jquery-selectors-closed\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-what-are-the-types-of-jquery-selectors-closed\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] What are the types of jquery selectors? [closed]","datePublished":"2022-11-12T20:20:09+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-what-are-the-types-of-jquery-selectors-closed\/"},"wordCount":860,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"keywords":["jquery"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-what-are-the-types-of-jquery-selectors-closed\/","url":"https:\/\/jassweb.com\/solved\/solved-what-are-the-types-of-jquery-selectors-closed\/","name":"[Solved] What are the types of jquery selectors? [closed] - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"datePublished":"2022-11-12T20:20:09+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-what-are-the-types-of-jquery-selectors-closed\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-what-are-the-types-of-jquery-selectors-closed\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-what-are-the-types-of-jquery-selectors-closed\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] What are the types of jquery selectors? [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\/#\/schema\/person\/image\/","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750","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\/21321","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=21321"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/21321\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=21321"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=21321"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=21321"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}