{"id":201109,"date":"2025-02-04T10:15:08","date_gmt":"2025-02-04T10:15:08","guid":{"rendered":"https:\/\/namso-gen.co\/blog\/how-to-get-element-value-in-javascript\/"},"modified":"2025-02-04T10:15:08","modified_gmt":"2025-02-04T10:15:08","slug":"how-to-get-element-value-in-javascript","status":"publish","type":"post","link":"https:\/\/namso-gen.co\/blog\/how-to-get-element-value-in-javascript\/","title":{"rendered":"How to get element value in JavaScript?"},"content":{"rendered":"<h2>How to get element value in JavaScript?<\/h2>\n<p>Getting the value of an element in JavaScript is a common task that is often required when working with web development. Whether you need to retrieve the value of a text input, select box, or any other type of element, there are a few different ways to accomplish this. Here are some methods you can use to get the value of an element in JavaScript:<\/p>\n<p>**1. Using the value property:**<br \/>\nOne of the simplest ways to get the value of an element in JavaScript is by using the value property. This property can be accessed directly on most form elements, such as text inputs and select boxes. <\/p>\n<p>For example, to get the value of a text input with an id of &#8220;myInput&#8221;, you can use the following code:<\/p>\n<p>&#8220;`javascript<br \/>\nvar value = document.getElementById(&#8220;myInput&#8221;).value;<br \/>\n&#8220;`<\/p>\n<p>This will retrieve the current value of the input element and store it in the variable &#8220;value&#8221;.<\/p>\n<p>**2. Using the innerHTML property:**<br \/>\nFor elements that do not have a value property, such as text nodes or div elements, you can use the innerHTML property to get their content. <\/p>\n<p>For example, to get the content of a div with an id of &#8220;myDiv&#8221;, you can use the following code:<\/p>\n<p>&#8220;`javascript<br \/>\nvar content = document.getElementById(&#8220;myDiv&#8221;).innerHTML;<br \/>\n&#8220;`<\/p>\n<p>This will retrieve the HTML content inside the div element and store it in the variable &#8220;content&#8221;.<\/p>\n<p>**3. Using the textContent property:**<br \/>\nIf you only need the text content of an element without any HTML tags, you can use the textContent property. <\/p>\n<p>For example, to get the text content of a span element with an id of &#8220;mySpan&#8221;, you can use the following code:<\/p>\n<p>&#8220;`javascript<br \/>\nvar text = document.getElementById(&#8220;mySpan&#8221;).textContent;<br \/>\n&#8220;`<\/p>\n<p>This will retrieve the text content inside the span element and store it in the variable &#8220;text&#8221;.<\/p>\n<p>**4. Using the getAttribute method:**<br \/>\nFor more complex scenarios where the value you need is stored in a custom attribute, you can use the getAttribute method to retrieve it. <\/p>\n<p>For example, to get the value of a custom attribute &#8220;data-value&#8221; on a div element with an id of &#8220;myDiv&#8221;, you can use the following code:<\/p>\n<p>&#8220;`javascript<br \/>\nvar value = document.getElementById(&#8220;myDiv&#8221;).getAttribute(&#8220;data-value&#8221;);<br \/>\n&#8220;`<\/p>\n<p>This will retrieve the value of the custom attribute and store it in the variable &#8220;value&#8221;.<\/p>\n<p>**5. Using querySelector:**<br \/>\nIf you want to target an element based on a specific CSS selector, you can use the querySelector method to select the element and then retrieve its value. <\/p>\n<p>For example, to get the value of a text input with a class of &#8220;myInput&#8221;, you can use the following code:<\/p>\n<p>&#8220;`javascript<br \/>\nvar value = document.querySelector(&#8220;.myInput&#8221;).value;<br \/>\n&#8220;`<\/p>\n<p>This will select the first element with the class &#8220;myInput&#8221; and retrieve its value.<\/p>\n<p>**6. Using data attributes:**<br \/>\nIf you have data stored in data attributes on an element, you can access them using the dataset property. <\/p>\n<p>For example, if you have a data attribute &#8220;data-info&#8221; on a div element with an id of &#8220;myDiv&#8221;, you can retrieve it like this:<\/p>\n<p>&#8220;`javascript<br \/>\nvar info = document.getElementById(&#8220;myDiv&#8221;).dataset.info;<br \/>\n&#8220;`<\/p>\n<p>This will retrieve the value of the data attribute and store it in the variable &#8220;info&#8221;.<\/p>\n<p>**7. Using form elements:**<br \/>\nIf you are working with form elements, you can access their values through the form object. <\/p>\n<p>For example, to get the value of a text input with a name of &#8220;username&#8221; inside a form with an id of &#8220;myForm&#8221;, you can use the following code:<\/p>\n<p>&#8220;`javascript<br \/>\nvar value = document.getElementById(&#8220;myForm&#8221;).elements[&#8220;username&#8221;].value;<br \/>\n&#8220;`<\/p>\n<p>This will retrieve the value of the input element within the form.<\/p>\n<p>**8. Using event target:**<br \/>\nWhen working with event handlers, you can access the element that triggered the event through the event object. <\/p>\n<p>For example, to get the value of a text input when it changes, you can use the following code within an event listener:<\/p>\n<p>&#8220;`javascript<br \/>\ndocument.getElementById(&#8220;myInput&#8221;).addEventListener(&#8220;input&#8221;, function(event) {<br \/>\n  var value = event.target.value;<br \/>\n});<br \/>\n&#8220;`<\/p>\n<p>This will retrieve the value of the input element that triggered the event.<\/p>\n<p>**9. Using array methods for multiple elements:**<br \/>\nIf you have multiple elements with the same class or other shared attribute, you can use array methods like map or forEach to iterate over them and retrieve their values. <\/p>\n<p>For example, to get the values of all elements with a class of &#8220;myElement&#8221;, you can use the following code:<\/p>\n<p>&#8220;`javascript<br \/>\nvar values = Array.from(document.getElementsByClassName(&#8220;myElement&#8221;)).map(function(element) {<br \/>\n  return element.value;<br \/>\n});<br \/>\n&#8220;`<\/p>\n<p>This will retrieve an array of values from all elements with the class &#8220;myElement&#8221;.<\/p>\n<p>**10. Using input event for real-time updates:**<br \/>\nIf you want to get the value of an input element in real-time as the user types, you can use the input event to listen for changes and update the value accordingly. <\/p>\n<p>For example, to log the value of a text input as it is being typed, you can use the following code:<\/p>\n<p>&#8220;`javascript<br \/>\ndocument.getElementById(&#8220;myInput&#8221;).addEventListener(&#8220;input&#8221;, function() {<br \/>\n  var value = this.value;<br \/>\n  console.log(value);<br \/>\n});<br \/>\n&#8220;`<\/p>\n<p>This will log the value of the input element as the user types.<\/p>\n<p>**11. Using server-side communication for dynamic values:**<br \/>\nIf you need to retrieve values from a server or external data source, you can use AJAX or fetch requests to fetch the data and update the element values dynamically. <\/p>\n<p>For example, to get the latest stock price from an API and display it on a webpage, you can use the following code:<\/p>\n<p>&#8220;`javascript<br \/>\nfetch(&#8220;https:\/\/api.example.com\/stock-price&#8221;)<br \/>\n  .then(response => response.json())<br \/>\n  .then(data => {<br \/>\n    document.getElementById(&#8220;stockPrice&#8221;).innerText = data.price;<br \/>\n  });<br \/>\n&#8220;`<\/p>\n<p>This will fetch the latest stock price from the API and update the element with an id of &#8220;stockPrice&#8221;.<\/p>\n<p>**12. Using localStorage for storing values:**<br \/>\nIf you need to store values locally for future use, you can use the localStorage API to save and retrieve data in the user&#8217;s browser. <\/p>\n<p>For example, to save a user&#8217;s preferences for a website theme and retrieve them later, you can use the following code:<\/p>\n<p>&#8220;`javascript<br \/>\nlocalStorage.setItem(&#8220;theme&#8221;, &#8220;dark&#8221;);<br \/>\nvar theme = localStorage.getItem(&#8220;theme&#8221;);<br \/>\n&#8220;`<\/p>\n<p>This will save the theme preference in localStorage and retrieve it later.<\/p>\n<p>By using these methods, you can easily retrieve the value of any element in JavaScript and use it in your web applications for a variety of purposes. From simple text inputs to complex form elements, there is always a way to get the value you need efficiently and effectively. Experiment with these techniques in your projects to see which works best for your specific use case.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>How to get element value in JavaScript? Getting the value of an element in JavaScript is a common task that is often required when working with web development. Whether you need to retrieve the value of a text input, select box, or any other type of element, there are a few different ways to accomplish &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"How to get element value in JavaScript?\" class=\"read-more button\" href=\"https:\/\/namso-gen.co\/blog\/how-to-get-element-value-in-javascript\/#more-201109\">Read more<span class=\"screen-reader-text\">How to get element value in JavaScript?<\/span><\/a><\/p>\n","protected":false},"author":51,"featured_media":107420,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[86279],"tags":[],"class_list":["post-201109","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-learn","no-featured-image-padding"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to get element value in JavaScript?<\/title>\n<meta name=\"description\" content=\"How to get element value in JavaScript? Getting the value of an element in JavaScript is a common task that is often required when working with web\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/namso-gen.co\/blog\/how-to-get-element-value-in-javascript\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to get element value in JavaScript?\" \/>\n<meta property=\"og:description\" content=\"How to get element value in JavaScript? Getting the value of an element in JavaScript is a common task that is often required when working with web\" \/>\n<meta property=\"og:url\" content=\"https:\/\/namso-gen.co\/blog\/how-to-get-element-value-in-javascript\/\" \/>\n<meta property=\"og:site_name\" content=\"Namso Gen Blog - Free Credit Card Generator [100% Valid]\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/synchronyfinancial\" \/>\n<meta property=\"article:published_time\" content=\"2025-02-04T10:15:08+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/namso-gen.co\/blog\/wp-content\/uploads\/2024\/03\/faq.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Adam Forbes\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@synchrony\" \/>\n<meta name=\"twitter:site\" content=\"@synchrony\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Adam Forbes\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/namso-gen.co\/blog\/how-to-get-element-value-in-javascript\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/namso-gen.co\/blog\/how-to-get-element-value-in-javascript\/\"},\"author\":{\"name\":\"Adam Forbes\",\"@id\":\"https:\/\/namso-gen.co\/blog\/#\/schema\/person\/88cd882dfb29a6b147bc0ea26dc84060\"},\"headline\":\"How to get element value in JavaScript?\",\"datePublished\":\"2025-02-04T10:15:08+00:00\",\"dateModified\":\"2025-02-04T10:15:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/namso-gen.co\/blog\/how-to-get-element-value-in-javascript\/\"},\"wordCount\":1074,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/namso-gen.co\/blog\/#organization\"},\"articleSection\":[\"Learn\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/namso-gen.co\/blog\/how-to-get-element-value-in-javascript\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/namso-gen.co\/blog\/how-to-get-element-value-in-javascript\/\",\"url\":\"https:\/\/namso-gen.co\/blog\/how-to-get-element-value-in-javascript\/\",\"name\":\"How to get element value in JavaScript?\",\"isPartOf\":{\"@id\":\"https:\/\/namso-gen.co\/blog\/#website\"},\"datePublished\":\"2025-02-04T10:15:08+00:00\",\"dateModified\":\"2025-02-04T10:15:08+00:00\",\"description\":\"How to get element value in JavaScript? Getting the value of an element in JavaScript is a common task that is often required when working with web\",\"breadcrumb\":{\"@id\":\"https:\/\/namso-gen.co\/blog\/how-to-get-element-value-in-javascript\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/namso-gen.co\/blog\/how-to-get-element-value-in-javascript\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/namso-gen.co\/blog\/how-to-get-element-value-in-javascript\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/namso-gen.co\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to get element value in JavaScript?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/namso-gen.co\/blog\/#website\",\"url\":\"https:\/\/namso-gen.co\/blog\/\",\"name\":\"Namso Gen Blog - Free Credit Card Generator [100% Valid]\",\"description\":\"In Namso gen blog you can get many tips regarding to Credit cards, VCC, Credit card security etc. You can generate credit cards by using Namso-gen.co\",\"publisher\":{\"@id\":\"https:\/\/namso-gen.co\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/namso-gen.co\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/namso-gen.co\/blog\/#organization\",\"name\":\"Namso Gen Blog - Free Credit Card Generator [100% Valid]\",\"url\":\"https:\/\/namso-gen.co\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/namso-gen.co\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/namso-gen.co\/blog\/wp-content\/uploads\/2020\/07\/namso-gen-logo.png\",\"contentUrl\":\"https:\/\/namso-gen.co\/blog\/wp-content\/uploads\/2020\/07\/namso-gen-logo.png\",\"width\":500,\"height\":164,\"caption\":\"Namso Gen Blog - Free Credit Card Generator [100% Valid]\"},\"image\":{\"@id\":\"https:\/\/namso-gen.co\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/synchronyfinancial\",\"https:\/\/twitter.com\/synchrony\",\"https:\/\/www.youtube.com\/synchronyfinancial\",\"https:\/\/www.instagram.com\/synchrony\",\"https:\/\/www.linkedin.com\/company\/synchrony-financial\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/namso-gen.co\/blog\/#\/schema\/person\/88cd882dfb29a6b147bc0ea26dc84060\",\"name\":\"Adam Forbes\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/namso-gen.co\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g\",\"caption\":\"Adam Forbes\"},\"description\":\"Guest author Adam Forbes has meticulously crafted and revised this article to the best of their knowledge and understanding. Readers are strongly advised to exercise caution, verify information independently, and rely on their own judgment when considering the information provided. Read more articles on Namso Gen here.\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to get element value in JavaScript?","description":"How to get element value in JavaScript? Getting the value of an element in JavaScript is a common task that is often required when working with web","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:\/\/namso-gen.co\/blog\/how-to-get-element-value-in-javascript\/","og_locale":"en_US","og_type":"article","og_title":"How to get element value in JavaScript?","og_description":"How to get element value in JavaScript? Getting the value of an element in JavaScript is a common task that is often required when working with web","og_url":"https:\/\/namso-gen.co\/blog\/how-to-get-element-value-in-javascript\/","og_site_name":"Namso Gen Blog - Free Credit Card Generator [100% Valid]","article_publisher":"https:\/\/www.facebook.com\/synchronyfinancial","article_published_time":"2025-02-04T10:15:08+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/namso-gen.co\/blog\/wp-content\/uploads\/2024\/03\/faq.png","type":"image\/png"}],"author":"Adam Forbes","twitter_card":"summary_large_image","twitter_creator":"@synchrony","twitter_site":"@synchrony","twitter_misc":{"Written by":"Adam Forbes","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/namso-gen.co\/blog\/how-to-get-element-value-in-javascript\/#article","isPartOf":{"@id":"https:\/\/namso-gen.co\/blog\/how-to-get-element-value-in-javascript\/"},"author":{"name":"Adam Forbes","@id":"https:\/\/namso-gen.co\/blog\/#\/schema\/person\/88cd882dfb29a6b147bc0ea26dc84060"},"headline":"How to get element value in JavaScript?","datePublished":"2025-02-04T10:15:08+00:00","dateModified":"2025-02-04T10:15:08+00:00","mainEntityOfPage":{"@id":"https:\/\/namso-gen.co\/blog\/how-to-get-element-value-in-javascript\/"},"wordCount":1074,"commentCount":0,"publisher":{"@id":"https:\/\/namso-gen.co\/blog\/#organization"},"articleSection":["Learn"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/namso-gen.co\/blog\/how-to-get-element-value-in-javascript\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/namso-gen.co\/blog\/how-to-get-element-value-in-javascript\/","url":"https:\/\/namso-gen.co\/blog\/how-to-get-element-value-in-javascript\/","name":"How to get element value in JavaScript?","isPartOf":{"@id":"https:\/\/namso-gen.co\/blog\/#website"},"datePublished":"2025-02-04T10:15:08+00:00","dateModified":"2025-02-04T10:15:08+00:00","description":"How to get element value in JavaScript? Getting the value of an element in JavaScript is a common task that is often required when working with web","breadcrumb":{"@id":"https:\/\/namso-gen.co\/blog\/how-to-get-element-value-in-javascript\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/namso-gen.co\/blog\/how-to-get-element-value-in-javascript\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/namso-gen.co\/blog\/how-to-get-element-value-in-javascript\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/namso-gen.co\/blog\/"},{"@type":"ListItem","position":2,"name":"How to get element value in JavaScript?"}]},{"@type":"WebSite","@id":"https:\/\/namso-gen.co\/blog\/#website","url":"https:\/\/namso-gen.co\/blog\/","name":"Namso Gen Blog - Free Credit Card Generator [100% Valid]","description":"In Namso gen blog you can get many tips regarding to Credit cards, VCC, Credit card security etc. You can generate credit cards by using Namso-gen.co","publisher":{"@id":"https:\/\/namso-gen.co\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/namso-gen.co\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/namso-gen.co\/blog\/#organization","name":"Namso Gen Blog - Free Credit Card Generator [100% Valid]","url":"https:\/\/namso-gen.co\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/namso-gen.co\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/namso-gen.co\/blog\/wp-content\/uploads\/2020\/07\/namso-gen-logo.png","contentUrl":"https:\/\/namso-gen.co\/blog\/wp-content\/uploads\/2020\/07\/namso-gen-logo.png","width":500,"height":164,"caption":"Namso Gen Blog - Free Credit Card Generator [100% Valid]"},"image":{"@id":"https:\/\/namso-gen.co\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/synchronyfinancial","https:\/\/twitter.com\/synchrony","https:\/\/www.youtube.com\/synchronyfinancial","https:\/\/www.instagram.com\/synchrony","https:\/\/www.linkedin.com\/company\/synchrony-financial"]},{"@type":"Person","@id":"https:\/\/namso-gen.co\/blog\/#\/schema\/person\/88cd882dfb29a6b147bc0ea26dc84060","name":"Adam Forbes","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/namso-gen.co\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","caption":"Adam Forbes"},"description":"Guest author Adam Forbes has meticulously crafted and revised this article to the best of their knowledge and understanding. Readers are strongly advised to exercise caution, verify information independently, and rely on their own judgment when considering the information provided. Read more articles on Namso Gen here."}]}},"_links":{"self":[{"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/posts\/201109","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/users\/51"}],"replies":[{"embeddable":true,"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/comments?post=201109"}],"version-history":[{"count":0,"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/posts\/201109\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/media\/107420"}],"wp:attachment":[{"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/media?parent=201109"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/categories?post=201109"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/tags?post=201109"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}