{"id":26732,"date":"2020-12-04T19:37:55","date_gmt":"2020-12-05T03:37:55","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=26732"},"modified":"2020-12-04T19:37:57","modified_gmt":"2020-12-05T03:37:57","slug":"jquery-click","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/jquery-click\/","title":{"rendered":"Trigger an Event Using the jQuery click() method"},"content":{"rendered":"\n<p>What is the most common action we take when visiting a website? A mouse click! Clicking is one of the most important actions to a website or app. You do so when navigating through a website and adding products to a cart.<br><\/p>\n\n\n\n<p>Wouldn\u2019t it be great if we could tell when a user clicks a specific element on the page? We could then build the experience around this behavior.<br><\/p>\n\n\n\n<p>Enter the jQuery <code>click()<\/code> method. We can trigger an event when the user clicks the mouse in just a couple of lines of code. This method is called on a jQuery selector and takes a callback function as an argument. The callback function will execute each time the <code>click()<\/code> method detects a mouse click event.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Using jQuery click()<\/h2>\n\n\n\n<p>We are going to render a HTML button and add text to the page when the button is clicked in the example below. The <code>click()<\/code> method can be attached to any element on the page, but it is most common to attach it to a button:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;script src=&quot;https:\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/3.5.1\/jquery.min.js&quot;&gt;&lt;\/script&gt;\n&lt;div id=&quot;main&quot;&gt;\n  &lt;button id=&quot;btn-primary&quot;&gt;\n  Click Me!\n&lt;\/button&gt;\n &lt;p class=&quot;new-content&quot;&gt;\n  \n  &lt;\/p&gt;\n&lt;\/div&gt;<\/pre><\/div>\n\n\n\n<p>The above code renders a basic button with an id of \u201cbtn-primary\u201d inside a &lt;div&gt; with an id of \u201cmain.\u201d The goal of this example is to display new content in the &lt;p&gt; tag with a class of \u201cnew-content\u201d after the button is clicked.&nbsp;<br><\/p>\n\n\n\n<p>Enclose our jQuery inside of &lt;script> tags and we have the following code:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;script&gt;\n  $('#btn-primary').click(() =&gt; {\n    $('.new-content').html(&quot;Button Clicked!&quot;)\n  })\n&lt;\/script&gt;<\/pre><\/div>\n\n\n\n<p>Now we have the <code>click()<\/code> method attached to the button\u2019s id and taking a callback function as an argument. The callback function is an anonymous function that returns the string \u201cButton Clicked!\u201d as the HTML inside the &lt;p> tag. Before we see what the above code renders, let\u2019s review what an anonymous function is.<br><\/p>\n\n\n\n<p>An anonymous function is simply a function without a name. Common uses for anonymous functions are as callbacks as arguments of a method. Callback methods and anonymous functions are the cornerstones of building responsive websites and apps.&nbsp;<br><\/p>\n\n\n\n<p>Now that we\u2019ve reviewed some JavaScript basics, let\u2019s see what the above code produced.&nbsp; Starting with the button inside the \u201cmain\u201d &lt;div&gt;:<br><\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh4.googleusercontent.com\/nYxEULSA5kJ_nBOx9-wte5noWrqHUbr-9RbcMSeH5UxuOXWWOmn7_2wg2fQM-BOc8T5Tfda2iz6YAlMYJg04C2Gv3xYGG0apBn1qmSJUSJzTnKQUzK6eHWhbgHCrjyKfFxbIfAmM\" alt=\"\"\/><\/figure>\n\n\n\n<p>The event handler will call the callback function once the button is clicked because we\u2019ve attached the <code>click()<\/code> method to the button selector. That will result in displaying our string \u201cButton Clicked\u201d below the button itself.<br><\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh3.googleusercontent.com\/6URQi4bX1vKzXemXteSnoRIGuyv1wKKmYDSz5ihBiYU5ybjXvATpEn6zLf3Af8abLgbPnq16-paYJASMVpcbAHc403dY3Ubcj_WEGtebMw5lawN_Ck8jz2UFDbDObtPHkI5MLSAi\" alt=\"\"\/><\/figure>\n\n\n\n<p>Notice that since we used the jQuery method <code>html()<\/code>, the content is only rendered once. Even if we click the button many times, only one instance of the &lt;p> element is displayed. If we wanted to display the string each time the button is clicked, we could use <code>append()<\/code> instead of <code>html()<\/code>:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;script&gt;\n  $('#btn-primary').click(() =&gt; {\n    $('.new-content').append(&quot;Button Clicked!&quot;)\n  })\n&lt;\/script&gt;<\/pre><\/div>\n\n\n\n<p>Clicking the button three times will see our string added to the&nbsp; \u201cnew content\u201d &lt;p&gt; tag three times:<br><\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh4.googleusercontent.com\/ALadFI-Z3P28MVpNueGc6oe-0DPdScd90z7u8Cz7RFHFzudduiXrKyaKM6chqm8Yv4rIXSuODi-UPVg5FUF2JEmecEzq7sb0jqPAa2x8zu2Fau53hql2fHTBnffyYigZixfj6Mxs\" alt=\"\"\/><\/figure>\n\n\n\n<p>This is an example of our callback function being called each time the button is clicked. You will notice the jQuery <code>click()<\/code> method is crucial to building an engaging user experience as you progress further in the journey of writing code.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>In this article, we discussed what the jQuery method <code>click()<\/code> is, what it does, and where we commonly find it. We looked at an example of attaching <code>click()<\/code> to a button and displaying new content either once after the button is clicked, or as many times as the button is clicked.\u00a0<br><\/p>\n\n\n\n<p>The jQuery method <code>click()<\/code> is a powerful way to create functionality of a web page or app while containing your code to just a few lines. Try attaching <code>click()<\/code> to other elements than a button and see what happens!<\/p>\n","protected":false},"excerpt":{"rendered":"What is the most common action we take when visiting a website? A mouse click! Clicking is one of the most important actions to a website or app. You do so when navigating through a website and adding products to a cart. Wouldn\u2019t it be great if we could tell when a user clicks a&hellip;","protected":false},"author":104,"featured_media":11907,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[11933],"tags":[],"class_list":{"0":"post-26732","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>jQuery methods: click()<\/title>\n<meta name=\"description\" content=\"Developers use the jquery click() method to attach an event handler on a selected element. Read our guide on how to get started using click().\" \/>\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-click\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Trigger an Event Using the jQuery click() method\" \/>\n<meta property=\"og:description\" content=\"Developers use the jquery click() method to attach an event handler on a selected element. Read our guide on how to get started using click().\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/jquery-click\/\" \/>\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=\"2020-12-05T03:37:55+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-12-05T03:37:57+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/JavaScript.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"667\" \/>\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-click\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/jquery-click\\\/\"},\"author\":{\"name\":\"Ryan Manchester\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/92fd52a503f77fc058ec2d0666da9bd5\"},\"headline\":\"Trigger an Event Using the jQuery click() method\",\"datePublished\":\"2020-12-05T03:37:55+00:00\",\"dateModified\":\"2020-12-05T03:37:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/jquery-click\\\/\"},\"wordCount\":597,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/jquery-click\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/JavaScript.jpg\",\"articleSection\":[\"JavaScript\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/jquery-click\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/jquery-click\\\/\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/jquery-click\\\/\",\"name\":\"jQuery methods: click()\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/jquery-click\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/jquery-click\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/JavaScript.jpg\",\"datePublished\":\"2020-12-05T03:37:55+00:00\",\"dateModified\":\"2020-12-05T03:37:57+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/92fd52a503f77fc058ec2d0666da9bd5\"},\"description\":\"Developers use the jquery click() method to attach an event handler on a selected element. Read our guide on how to get started using click().\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/jquery-click\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/jquery-click\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/jquery-click\\\/#primaryimage\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/JavaScript.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/JavaScript.jpg\",\"width\":1000,\"height\":667},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/jquery-click\\\/#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\":\"Trigger an Event Using the jQuery click() method\"}]},{\"@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":"jQuery methods: click()","description":"Developers use the jquery click() method to attach an event handler on a selected element. Read our guide on how to get started using click().","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-click\/","og_locale":"en_US","og_type":"article","og_title":"Trigger an Event Using the jQuery click() method","og_description":"Developers use the jquery click() method to attach an event handler on a selected element. Read our guide on how to get started using click().","og_url":"https:\/\/careerkarma.com\/blog\/jquery-click\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-12-05T03:37:55+00:00","article_modified_time":"2020-12-05T03:37:57+00:00","og_image":[{"width":1000,"height":667,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/JavaScript.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-click\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/jquery-click\/"},"author":{"name":"Ryan Manchester","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/92fd52a503f77fc058ec2d0666da9bd5"},"headline":"Trigger an Event Using the jQuery click() method","datePublished":"2020-12-05T03:37:55+00:00","dateModified":"2020-12-05T03:37:57+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/jquery-click\/"},"wordCount":597,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/jquery-click\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/JavaScript.jpg","articleSection":["JavaScript"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/jquery-click\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/jquery-click\/","url":"https:\/\/careerkarma.com\/blog\/jquery-click\/","name":"jQuery methods: click()","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/jquery-click\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/jquery-click\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/JavaScript.jpg","datePublished":"2020-12-05T03:37:55+00:00","dateModified":"2020-12-05T03:37:57+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/92fd52a503f77fc058ec2d0666da9bd5"},"description":"Developers use the jquery click() method to attach an event handler on a selected element. Read our guide on how to get started using click().","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/jquery-click\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/jquery-click\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/jquery-click\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/JavaScript.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/JavaScript.jpg","width":1000,"height":667},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/jquery-click\/#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":"Trigger an Event Using the jQuery click() method"}]},{"@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\/26732","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=26732"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/26732\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/11907"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=26732"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=26732"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=26732"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}