{"id":1200,"date":"2020-03-18T13:42:14","date_gmt":"2020-03-18T06:42:14","guid":{"rendered":"https:\/\/www.yellowweb.id\/blog\/?p=1200"},"modified":"2020-03-18T13:42:22","modified_gmt":"2020-03-18T06:42:22","slug":"toggle-dark-mode-jquery","status":"publish","type":"post","link":"https:\/\/www.yellowweb.id\/blog\/toggle-dark-mode-jquery\/","title":{"rendered":"Toggle Dark Mode (jQuery)"},"content":{"rendered":"\n<p>Artikel kali ini akan membahas seputar jQuery, dan akan diimplementasikan pada layout web yang nanti akan dibangun. Toogle efek dengan menggunakan library jQuery, contohnya seperti fitur merubah warna keseluruhan halaman web atau biasa dikenal dengan istilah <a href=\"https:\/\/www.w3schools.com\/howto\/howto_js_toggle_dark_mode.asp\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"dark-mode. (opens in a new tab)\">dark-mode.<\/a><\/p>\n\n\n\n<!--more-->\n\n\n\n<p>Layout web yang kita jumpai hampir kebanyakan menggunakan warna dasar putih, hal ini menyebabkan membuat mata cepat lelah terlebih lagi jika ruangan kurang cahaya. <\/p>\n\n\n\n<p>Fitur dark-mode merupakan UI, dimana konten atau layout memiliki tulisan dengan warna terang dengan latar belakang warna gelap. Fitur dark-mode awalnya digunakan pada perangkat mobile, fitur ini sangat membantu pada malam hari. <\/p>\n\n\n\n<p>Langsung saja, disini kita akan membuat fitur toggle dark-mode dengan menggunakan library jQuery.<\/p>\n\n\n\n<p>skrip untuk HTML<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;section>\n\t\t&lt;p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n\t\ttempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,\n\t\tquis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\n\t\tconsequat. Duis aute irure dolor in reprehenderit in voluptate velit esse\n\t\tcillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non\n\t\tproident, sunt in culpa qui officia deserunt mollit anim id est laborum.&lt;\/p>\n\t\t&lt;p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).&lt;\/p>\n\t\t&lt;p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n\t\ttempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,\n\t\tquis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\n\t\tconsequat. Duis aute irure dolor in reprehenderit in voluptate velit esse\n\t\tcillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non\n\t\tproident, sunt in culpa qui officia deserunt mollit anim id est laborum.&lt;\/p>\n\t\t&lt;p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).&lt;\/p>\n\t&lt;\/section>\n\t&lt;ul>\n\t\t&lt;li>\n\t\t\t&lt;span>Dark&lt;\/span>\n\t\t\t&lt;span>Light&lt;\/span>\n\t\t&lt;\/li>\n\t&lt;\/ul><\/code><\/pre>\n\n\n\n<p>skrip untuk CSS<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/* CSS *\/\n\nbody{\n\tmargin: 0;\n\tmargin: 0;\n}\n\nsection{\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\twidth: 100%;\n\theight: 100vh;\n\tfont-family: sans-serif;\n\tbox-sizing: border-box;\n\tpadding: 100px;\n\ttransition: 0.5s;\n}\n\nul{\n\tposition: absolute;\n\ttop: 20px;\n\tright: 20px;\n\tmargin: 0;\n\tpadding: 0;\n\twidth: 100px;\n\theight: 30px;\n\tz-index: 1;\n\tborder: 1px solid #000;\n\tcursor: pointer;\n\toverflow: hidden;\n}\n\nul li{\n\tlist-style: none;\n\twidth: 100%;\n\theight: 60px;\n\ttext-align: center;\n\ttext-transform: uppercase;\n\ttransition: 0.5s;\n}\n\nul li span{\n\tdisplay: block;\n\theight: 30px;\n\tline-height: 30px;\n\tcolor: #262626;\n\tbackground: #ffffff;\n}\n\nul li span:nth-child(1){\n\tbackground-color: #262626;\n\tcolor: #ffffff;\n}\n\nul.active li{\n\ttransform: translateY(-30px);\n}\n\nsection.dark{\n\tbackground: #262626;\n\tcolor: #ffffff;\n}\n\nul.active{\n\tborder-color: #ffffff;\n}<\/code><\/pre>\n\n\n\n<p>dan skrip untuk jQuery (JavaScript Library)<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$(document).ready(function(){\n\t\t\t$('ul').click(function(){\n\t\t\t\t$('ul').toggleClass('active')\n\t\t\t\t$('section').toggleClass('dark')\n\t\t\t})\n\t\t})\n<\/code><\/pre>\n\n\n\n<p>nah mudah bukan, silahkan mencoba dan sampai berjumpa lagi pada artikel berikutnya, untuk demonya dapat dilihat dibawah ini:<\/p>\n\n\n\n<iframe loading=\"lazy\" width=\"100%\" height=\"300\" src=\"\/\/jsfiddle.net\/miftahfs\/zsmuc7ve\/2\/embedded\/\" allowfullscreen=\"allowfullscreen\" allowpaymentrequest frameborder=\"0\"><\/iframe>\n","protected":false},"excerpt":{"rendered":"<p>Artikel kali ini akan membahas seputar jQuery, dan akan diimplementasikan pada layout web yang nanti akan dibangun. Toogle efek dengan menggunakan library jQuery, contohnya seperti fitur merubah warna keseluruhan halaman web atau biasa dikenal dengan istilah dark-mode.<\/p>\n","protected":false},"author":1,"featured_media":1203,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[116],"tags":[18,522,524,523],"class_list":["post-1200","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-jquery","tag-jquery","tag-toggle","tag-toggle-efek","tag-toggle-jquery"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Toggle Dark Mode (jQuery) - YELLOWWEB.ID<\/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:\/\/www.yellowweb.id\/blog\/toggle-dark-mode-jquery\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Toggle Dark Mode (jQuery) - YELLOWWEB.ID\" \/>\n<meta property=\"og:description\" content=\"Artikel kali ini akan membahas seputar jQuery, dan akan diimplementasikan pada layout web yang nanti akan dibangun. Toogle efek dengan menggunakan library jQuery, contohnya seperti fitur merubah warna keseluruhan halaman web atau biasa dikenal dengan istilah dark-mode.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.yellowweb.id\/blog\/toggle-dark-mode-jquery\/\" \/>\n<meta property=\"og:site_name\" content=\"YELLOWWEB.ID\" \/>\n<meta property=\"article:published_time\" content=\"2020-03-18T06:42:14+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-03-18T06:42:22+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/i0.wp.com\/www.yellowweb.id\/blog\/wp-content\/uploads\/2020\/03\/dark-mode.jpg?fit=600%2C290&ssl=1\" \/>\n\t<meta property=\"og:image:width\" content=\"600\" \/>\n\t<meta property=\"og:image:height\" content=\"290\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"yellowweb\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"yellowweb\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated 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:\\\/\\\/www.yellowweb.id\\\/blog\\\/toggle-dark-mode-jquery\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/toggle-dark-mode-jquery\\\/\"},\"author\":{\"name\":\"yellowweb\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/#\\\/schema\\\/person\\\/75188044e080844724e381ab6a5b9829\"},\"headline\":\"Toggle Dark Mode (jQuery)\",\"datePublished\":\"2020-03-18T06:42:14+00:00\",\"dateModified\":\"2020-03-18T06:42:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/toggle-dark-mode-jquery\\\/\"},\"wordCount\":140,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/toggle-dark-mode-jquery\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/03\\\/dark-mode.jpg\",\"keywords\":[\"jquery\",\"toggle\",\"toggle-efek\",\"toggle-jquery\"],\"articleSection\":[\"jQuery\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/toggle-dark-mode-jquery\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/toggle-dark-mode-jquery\\\/\",\"url\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/toggle-dark-mode-jquery\\\/\",\"name\":\"Toggle Dark Mode (jQuery) - YELLOWWEB.ID\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/toggle-dark-mode-jquery\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/toggle-dark-mode-jquery\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/03\\\/dark-mode.jpg\",\"datePublished\":\"2020-03-18T06:42:14+00:00\",\"dateModified\":\"2020-03-18T06:42:22+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/#\\\/schema\\\/person\\\/75188044e080844724e381ab6a5b9829\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/toggle-dark-mode-jquery\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/toggle-dark-mode-jquery\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/toggle-dark-mode-jquery\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/03\\\/dark-mode.jpg\",\"contentUrl\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/03\\\/dark-mode.jpg\",\"width\":600,\"height\":290,\"caption\":\"dark mode jquery\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/toggle-dark-mode-jquery\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Toggle Dark Mode (jQuery)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/\",\"name\":\"YELLOWWEB.ID\",\"description\":\"Kursus Web Design | Kursus Web Programming | Mobile Web Apps | Digital Marketing\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/#\\\/schema\\\/person\\\/75188044e080844724e381ab6a5b9829\",\"name\":\"yellowweb\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5afd1bfac26e9377e8f5e36afb624cf3690dd31cb07c3961dfbc736b9ff1912f?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5afd1bfac26e9377e8f5e36afb624cf3690dd31cb07c3961dfbc736b9ff1912f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5afd1bfac26e9377e8f5e36afb624cf3690dd31cb07c3961dfbc736b9ff1912f?s=96&d=mm&r=g\",\"caption\":\"yellowweb\"},\"sameAs\":[\"https:\\\/\\\/www.yellowweb.id\"],\"url\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/author\\\/yellowweb\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Toggle Dark Mode (jQuery) - YELLOWWEB.ID","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:\/\/www.yellowweb.id\/blog\/toggle-dark-mode-jquery\/","og_locale":"en_GB","og_type":"article","og_title":"Toggle Dark Mode (jQuery) - YELLOWWEB.ID","og_description":"Artikel kali ini akan membahas seputar jQuery, dan akan diimplementasikan pada layout web yang nanti akan dibangun. Toogle efek dengan menggunakan library jQuery, contohnya seperti fitur merubah warna keseluruhan halaman web atau biasa dikenal dengan istilah dark-mode.","og_url":"https:\/\/www.yellowweb.id\/blog\/toggle-dark-mode-jquery\/","og_site_name":"YELLOWWEB.ID","article_published_time":"2020-03-18T06:42:14+00:00","article_modified_time":"2020-03-18T06:42:22+00:00","og_image":[{"width":600,"height":290,"url":"https:\/\/i0.wp.com\/www.yellowweb.id\/blog\/wp-content\/uploads\/2020\/03\/dark-mode.jpg?fit=600%2C290&ssl=1","type":"image\/jpeg"}],"author":"yellowweb","twitter_card":"summary_large_image","twitter_misc":{"Written by":"yellowweb","Estimated reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.yellowweb.id\/blog\/toggle-dark-mode-jquery\/#article","isPartOf":{"@id":"https:\/\/www.yellowweb.id\/blog\/toggle-dark-mode-jquery\/"},"author":{"name":"yellowweb","@id":"https:\/\/www.yellowweb.id\/blog\/#\/schema\/person\/75188044e080844724e381ab6a5b9829"},"headline":"Toggle Dark Mode (jQuery)","datePublished":"2020-03-18T06:42:14+00:00","dateModified":"2020-03-18T06:42:22+00:00","mainEntityOfPage":{"@id":"https:\/\/www.yellowweb.id\/blog\/toggle-dark-mode-jquery\/"},"wordCount":140,"commentCount":0,"image":{"@id":"https:\/\/www.yellowweb.id\/blog\/toggle-dark-mode-jquery\/#primaryimage"},"thumbnailUrl":"https:\/\/www.yellowweb.id\/blog\/wp-content\/uploads\/2020\/03\/dark-mode.jpg","keywords":["jquery","toggle","toggle-efek","toggle-jquery"],"articleSection":["jQuery"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.yellowweb.id\/blog\/toggle-dark-mode-jquery\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.yellowweb.id\/blog\/toggle-dark-mode-jquery\/","url":"https:\/\/www.yellowweb.id\/blog\/toggle-dark-mode-jquery\/","name":"Toggle Dark Mode (jQuery) - YELLOWWEB.ID","isPartOf":{"@id":"https:\/\/www.yellowweb.id\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.yellowweb.id\/blog\/toggle-dark-mode-jquery\/#primaryimage"},"image":{"@id":"https:\/\/www.yellowweb.id\/blog\/toggle-dark-mode-jquery\/#primaryimage"},"thumbnailUrl":"https:\/\/www.yellowweb.id\/blog\/wp-content\/uploads\/2020\/03\/dark-mode.jpg","datePublished":"2020-03-18T06:42:14+00:00","dateModified":"2020-03-18T06:42:22+00:00","author":{"@id":"https:\/\/www.yellowweb.id\/blog\/#\/schema\/person\/75188044e080844724e381ab6a5b9829"},"breadcrumb":{"@id":"https:\/\/www.yellowweb.id\/blog\/toggle-dark-mode-jquery\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.yellowweb.id\/blog\/toggle-dark-mode-jquery\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.yellowweb.id\/blog\/toggle-dark-mode-jquery\/#primaryimage","url":"https:\/\/www.yellowweb.id\/blog\/wp-content\/uploads\/2020\/03\/dark-mode.jpg","contentUrl":"https:\/\/www.yellowweb.id\/blog\/wp-content\/uploads\/2020\/03\/dark-mode.jpg","width":600,"height":290,"caption":"dark mode jquery"},{"@type":"BreadcrumbList","@id":"https:\/\/www.yellowweb.id\/blog\/toggle-dark-mode-jquery\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.yellowweb.id\/blog\/"},{"@type":"ListItem","position":2,"name":"Toggle Dark Mode (jQuery)"}]},{"@type":"WebSite","@id":"https:\/\/www.yellowweb.id\/blog\/#website","url":"https:\/\/www.yellowweb.id\/blog\/","name":"YELLOWWEB.ID","description":"Kursus Web Design | Kursus Web Programming | Mobile Web Apps | Digital Marketing","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.yellowweb.id\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Person","@id":"https:\/\/www.yellowweb.id\/blog\/#\/schema\/person\/75188044e080844724e381ab6a5b9829","name":"yellowweb","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/secure.gravatar.com\/avatar\/5afd1bfac26e9377e8f5e36afb624cf3690dd31cb07c3961dfbc736b9ff1912f?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/5afd1bfac26e9377e8f5e36afb624cf3690dd31cb07c3961dfbc736b9ff1912f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/5afd1bfac26e9377e8f5e36afb624cf3690dd31cb07c3961dfbc736b9ff1912f?s=96&d=mm&r=g","caption":"yellowweb"},"sameAs":["https:\/\/www.yellowweb.id"],"url":"https:\/\/www.yellowweb.id\/blog\/author\/yellowweb\/"}]}},"_links":{"self":[{"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/posts\/1200","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/comments?post=1200"}],"version-history":[{"count":3,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/posts\/1200\/revisions"}],"predecessor-version":[{"id":1204,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/posts\/1200\/revisions\/1204"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/media\/1203"}],"wp:attachment":[{"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/media?parent=1200"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/categories?post=1200"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/tags?post=1200"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}