{"id":6973,"date":"2024-08-08T16:45:42","date_gmt":"2024-08-08T16:45:42","guid":{"rendered":"https:\/\/www.leadshook.com\/help\/?p=6973"},"modified":"2024-08-08T16:46:44","modified_gmt":"2024-08-08T16:46:44","slug":"validating-special-characters-in-the-first-name-and-last-name-input-fields-using-javascript","status":"publish","type":"post","link":"https:\/\/www.leadshook.com\/help\/validating-special-characters-in-the-first-name-and-last-name-input-fields-using-javascript\/","title":{"rendered":"Validating special characters in the first name and last name input fields on a form node using JavaScript"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Introduction:<\/h2>\n\n\n\n<p>This article provides a step-by-step guide on how to implement a JavaScript script for validating first and last name input fields in a form. The script ensures that these fields contain only letters, spaces, and for the last names, single quotes.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Implementing the script<\/h2>\n\n\n\n<p><strong>Step 1:<\/strong> Firstly, add the following script into the form node where you have first and last name field.<br><br><strong>Step 2:<\/strong> Set the script to trigger upon entry.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;script&gt;\n  const regexFirstName = \/^&#91;a-zA-Z ]*$\/; \/\/ for first name\n  const regexLastName = \/^&#91;a-zA-Z' ]*$\/; \/\/ for last name, includes single quote\n  let firstName, lastName, submitBtn, buttonTxt, fn, ln;\n\n  const checkEntry = () =&gt; {\n    if(!fn || !ln) return; \/\/ exits if the elements are not yet defined\n    firstName = fn.value;\n    lastName = ln.value;\n    let invalidFn = !regexFirstName.test(firstName);\n    let invalidLn = !regexLastName.test(lastName);\n    if (invalidFn || invalidLn) {\n      submitBtn.disabled = true;\n      submitBtn.innerHTML = 'Name cannot contain special character!';\n    } else {\n      submitBtn.disabled = false;\n      submitBtn.innerHTML = buttonTxt;\n    }\n  };\n\n  setTimeout(() =&gt; {\n    submitBtn = document.getElementsByClassName('submit-btn')&#91;0];\n    buttonTxt = submitBtn ? submitBtn.innerHTML : \"\";\n    fn = document.getElementsByName('first_name')&#91;0];\n    ln = document.getElementsByName('last_name')&#91;0];\n    if(fn) fn.addEventListener('keyup', checkEntry);\n    if(ln) ln.addEventListener('keyup', checkEntry);\n  }, 100);\n&lt;\/script&gt;<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img fetchpriority=\"high\" decoding=\"async\" width=\"1024\" height=\"842\" src=\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2023\/11\/image-1-1024x842.png\" alt=\"\" class=\"wp-image-6977\" srcset=\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2023\/11\/image-1-1024x842.png 1024w, https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2023\/11\/image-1-300x247.png 300w, https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2023\/11\/image-1-768x631.png 768w, https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2023\/11\/image-1-60x49.png 60w, https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2023\/11\/image-1-150x123.png 150w, https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2023\/11\/image-1.png 1366w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<p class=\"has-luminous-vivid-amber-background-color has-background\"><strong>Note: <\/strong>The script above uses regular expressions to check the user&#8217;s input in the first name and last name fields. This is done each time a key is pressed in either field. If the input does not match the defined format (only letters, spaces, and potentially a single quote for the last name), the submit button is disabled, and its label changes to &#8216;Name cannot contain special character!&#8217;. If the input matches the allowed format, the submit button is enabled, and its label resets to its original text.<\/p>\n\n\n\n<p><strong>Step 3:<\/strong> Test the Functionality<\/p>\n\n\n\n<p>Once the script is implemented, test the form by inputting both valid and invalid address data into the name fields. The form should react as expected, meaning it should prevent the submission of invalid data.<\/p>\n\n\n\n<p>Implementing the steps accurately ensures that your form prohibits special characters in name fields, allowing only spaces and single quotes.&nbsp;<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction: This article provides a step-by-step guide on how to implement a JavaScript script for validating first and last name input fields in a form. The script ensures that these fields contain only letters, spaces, and for the last names, single quotes. Implementing the script Step 1: Firstly, add the following script into the form [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[27,12,620],"tags":[785,198,375,786,567,1005,435],"class_list":["post-6973","post","type-post","status-publish","format-standard","hentry","category-decision-tree","category-leadshook","category-scripts","tag-first-name","tag-form","tag-form-field","tag-last-name","tag-script","tag-special-characters","tag-validation"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Validating special characters in the first name and last name input fields on a form node using JavaScript - LeadsHook Knowledge Base<\/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.leadshook.com\/help\/validating-special-characters-in-the-first-name-and-last-name-input-fields-using-javascript\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Validating special characters in the first name and last name input fields on a form node using JavaScript - LeadsHook Knowledge Base\" \/>\n<meta property=\"og:description\" content=\"Introduction: This article provides a step-by-step guide on how to implement a JavaScript script for validating first and last name input fields in a form. The script ensures that these fields contain only letters, spaces, and for the last names, single quotes. Implementing the script Step 1: Firstly, add the following script into the form [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.leadshook.com\/help\/validating-special-characters-in-the-first-name-and-last-name-input-fields-using-javascript\/\" \/>\n<meta property=\"og:site_name\" content=\"LeadsHook Knowledge Base\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/leadshook\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-08-08T16:45:42+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-08-08T16:46:44+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2023\/11\/image-1-1024x842.png\" \/>\n<meta name=\"author\" content=\"Nik T\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@leadshook\" \/>\n<meta name=\"twitter:site\" content=\"@leadshook\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Nik T\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.leadshook.com\/help\/validating-special-characters-in-the-first-name-and-last-name-input-fields-using-javascript\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.leadshook.com\/help\/validating-special-characters-in-the-first-name-and-last-name-input-fields-using-javascript\/\"},\"author\":{\"name\":\"Nik T\",\"@id\":\"https:\/\/www.leadshook.com\/help\/#\/schema\/person\/4bfe37d814563cc729828b7055313f4d\"},\"headline\":\"Validating special characters in the first name and last name input fields on a form node using JavaScript\",\"datePublished\":\"2024-08-08T16:45:42+00:00\",\"dateModified\":\"2024-08-08T16:46:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.leadshook.com\/help\/validating-special-characters-in-the-first-name-and-last-name-input-fields-using-javascript\/\"},\"wordCount\":238,\"publisher\":{\"@id\":\"https:\/\/www.leadshook.com\/help\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.leadshook.com\/help\/validating-special-characters-in-the-first-name-and-last-name-input-fields-using-javascript\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2023\/11\/image-1-1024x842.png\",\"keywords\":[\"first name\",\"Form\",\"form field\",\"last name\",\"script\",\"special characters\",\"validation\"],\"articleSection\":[\"Decision Tree\",\"LeadsHook\",\"Scripts\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.leadshook.com\/help\/validating-special-characters-in-the-first-name-and-last-name-input-fields-using-javascript\/\",\"url\":\"https:\/\/www.leadshook.com\/help\/validating-special-characters-in-the-first-name-and-last-name-input-fields-using-javascript\/\",\"name\":\"Validating special characters in the first name and last name input fields on a form node using JavaScript - LeadsHook Knowledge Base\",\"isPartOf\":{\"@id\":\"https:\/\/www.leadshook.com\/help\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.leadshook.com\/help\/validating-special-characters-in-the-first-name-and-last-name-input-fields-using-javascript\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.leadshook.com\/help\/validating-special-characters-in-the-first-name-and-last-name-input-fields-using-javascript\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2023\/11\/image-1-1024x842.png\",\"datePublished\":\"2024-08-08T16:45:42+00:00\",\"dateModified\":\"2024-08-08T16:46:44+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.leadshook.com\/help\/validating-special-characters-in-the-first-name-and-last-name-input-fields-using-javascript\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.leadshook.com\/help\/validating-special-characters-in-the-first-name-and-last-name-input-fields-using-javascript\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.leadshook.com\/help\/validating-special-characters-in-the-first-name-and-last-name-input-fields-using-javascript\/#primaryimage\",\"url\":\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2023\/11\/image-1.png\",\"contentUrl\":\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2023\/11\/image-1.png\",\"width\":1366,\"height\":1123},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.leadshook.com\/help\/validating-special-characters-in-the-first-name-and-last-name-input-fields-using-javascript\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.leadshook.com\/help\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Validating special characters in the first name and last name input fields on a form node using JavaScript\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.leadshook.com\/help\/#website\",\"url\":\"https:\/\/www.leadshook.com\/help\/\",\"name\":\"LeadsHook Knowledge Base\",\"description\":\"LeadsHook Training &amp; Technical Help\",\"publisher\":{\"@id\":\"https:\/\/www.leadshook.com\/help\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.leadshook.com\/help\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.leadshook.com\/help\/#organization\",\"name\":\"LeadsHook\",\"url\":\"https:\/\/www.leadshook.com\/help\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.leadshook.com\/help\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2018\/12\/leadshook-logo.png\",\"contentUrl\":\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2018\/12\/leadshook-logo.png\",\"width\":350,\"height\":83,\"caption\":\"LeadsHook\"},\"image\":{\"@id\":\"https:\/\/www.leadshook.com\/help\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/leadshook\/\",\"https:\/\/x.com\/leadshook\",\"https:\/\/www.linkedin.com\/showcase\/leadshook\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.leadshook.com\/help\/#\/schema\/person\/4bfe37d814563cc729828b7055313f4d\",\"name\":\"Nik T\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/48d53e68db0b1db1cd5c54a750130fb2ee0c663306ff1bd434373f1a368ef7a0?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/48d53e68db0b1db1cd5c54a750130fb2ee0c663306ff1bd434373f1a368ef7a0?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/48d53e68db0b1db1cd5c54a750130fb2ee0c663306ff1bd434373f1a368ef7a0?s=96&d=mm&r=g\",\"caption\":\"Nik T\"},\"sameAs\":[\"http:\/\/www.LeadsHook.com\"],\"url\":\"https:\/\/www.leadshook.com\/help\/author\/nik\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Validating special characters in the first name and last name input fields on a form node using JavaScript - LeadsHook Knowledge Base","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.leadshook.com\/help\/validating-special-characters-in-the-first-name-and-last-name-input-fields-using-javascript\/","og_locale":"en_US","og_type":"article","og_title":"Validating special characters in the first name and last name input fields on a form node using JavaScript - LeadsHook Knowledge Base","og_description":"Introduction: This article provides a step-by-step guide on how to implement a JavaScript script for validating first and last name input fields in a form. The script ensures that these fields contain only letters, spaces, and for the last names, single quotes. Implementing the script Step 1: Firstly, add the following script into the form [&hellip;]","og_url":"https:\/\/www.leadshook.com\/help\/validating-special-characters-in-the-first-name-and-last-name-input-fields-using-javascript\/","og_site_name":"LeadsHook Knowledge Base","article_publisher":"https:\/\/www.facebook.com\/leadshook\/","article_published_time":"2024-08-08T16:45:42+00:00","article_modified_time":"2024-08-08T16:46:44+00:00","og_image":[{"url":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2023\/11\/image-1-1024x842.png","type":"","width":"","height":""}],"author":"Nik T","twitter_card":"summary_large_image","twitter_creator":"@leadshook","twitter_site":"@leadshook","twitter_misc":{"Written by":"Nik T","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.leadshook.com\/help\/validating-special-characters-in-the-first-name-and-last-name-input-fields-using-javascript\/#article","isPartOf":{"@id":"https:\/\/www.leadshook.com\/help\/validating-special-characters-in-the-first-name-and-last-name-input-fields-using-javascript\/"},"author":{"name":"Nik T","@id":"https:\/\/www.leadshook.com\/help\/#\/schema\/person\/4bfe37d814563cc729828b7055313f4d"},"headline":"Validating special characters in the first name and last name input fields on a form node using JavaScript","datePublished":"2024-08-08T16:45:42+00:00","dateModified":"2024-08-08T16:46:44+00:00","mainEntityOfPage":{"@id":"https:\/\/www.leadshook.com\/help\/validating-special-characters-in-the-first-name-and-last-name-input-fields-using-javascript\/"},"wordCount":238,"publisher":{"@id":"https:\/\/www.leadshook.com\/help\/#organization"},"image":{"@id":"https:\/\/www.leadshook.com\/help\/validating-special-characters-in-the-first-name-and-last-name-input-fields-using-javascript\/#primaryimage"},"thumbnailUrl":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2023\/11\/image-1-1024x842.png","keywords":["first name","Form","form field","last name","script","special characters","validation"],"articleSection":["Decision Tree","LeadsHook","Scripts"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.leadshook.com\/help\/validating-special-characters-in-the-first-name-and-last-name-input-fields-using-javascript\/","url":"https:\/\/www.leadshook.com\/help\/validating-special-characters-in-the-first-name-and-last-name-input-fields-using-javascript\/","name":"Validating special characters in the first name and last name input fields on a form node using JavaScript - LeadsHook Knowledge Base","isPartOf":{"@id":"https:\/\/www.leadshook.com\/help\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.leadshook.com\/help\/validating-special-characters-in-the-first-name-and-last-name-input-fields-using-javascript\/#primaryimage"},"image":{"@id":"https:\/\/www.leadshook.com\/help\/validating-special-characters-in-the-first-name-and-last-name-input-fields-using-javascript\/#primaryimage"},"thumbnailUrl":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2023\/11\/image-1-1024x842.png","datePublished":"2024-08-08T16:45:42+00:00","dateModified":"2024-08-08T16:46:44+00:00","breadcrumb":{"@id":"https:\/\/www.leadshook.com\/help\/validating-special-characters-in-the-first-name-and-last-name-input-fields-using-javascript\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.leadshook.com\/help\/validating-special-characters-in-the-first-name-and-last-name-input-fields-using-javascript\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.leadshook.com\/help\/validating-special-characters-in-the-first-name-and-last-name-input-fields-using-javascript\/#primaryimage","url":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2023\/11\/image-1.png","contentUrl":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2023\/11\/image-1.png","width":1366,"height":1123},{"@type":"BreadcrumbList","@id":"https:\/\/www.leadshook.com\/help\/validating-special-characters-in-the-first-name-and-last-name-input-fields-using-javascript\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.leadshook.com\/help\/"},{"@type":"ListItem","position":2,"name":"Validating special characters in the first name and last name input fields on a form node using JavaScript"}]},{"@type":"WebSite","@id":"https:\/\/www.leadshook.com\/help\/#website","url":"https:\/\/www.leadshook.com\/help\/","name":"LeadsHook Knowledge Base","description":"LeadsHook Training &amp; Technical Help","publisher":{"@id":"https:\/\/www.leadshook.com\/help\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.leadshook.com\/help\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.leadshook.com\/help\/#organization","name":"LeadsHook","url":"https:\/\/www.leadshook.com\/help\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.leadshook.com\/help\/#\/schema\/logo\/image\/","url":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2018\/12\/leadshook-logo.png","contentUrl":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2018\/12\/leadshook-logo.png","width":350,"height":83,"caption":"LeadsHook"},"image":{"@id":"https:\/\/www.leadshook.com\/help\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/leadshook\/","https:\/\/x.com\/leadshook","https:\/\/www.linkedin.com\/showcase\/leadshook\/"]},{"@type":"Person","@id":"https:\/\/www.leadshook.com\/help\/#\/schema\/person\/4bfe37d814563cc729828b7055313f4d","name":"Nik T","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/48d53e68db0b1db1cd5c54a750130fb2ee0c663306ff1bd434373f1a368ef7a0?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/48d53e68db0b1db1cd5c54a750130fb2ee0c663306ff1bd434373f1a368ef7a0?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/48d53e68db0b1db1cd5c54a750130fb2ee0c663306ff1bd434373f1a368ef7a0?s=96&d=mm&r=g","caption":"Nik T"},"sameAs":["http:\/\/www.LeadsHook.com"],"url":"https:\/\/www.leadshook.com\/help\/author\/nik\/"}]}},"_links":{"self":[{"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/posts\/6973","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/comments?post=6973"}],"version-history":[{"count":8,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/posts\/6973\/revisions"}],"predecessor-version":[{"id":7552,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/posts\/6973\/revisions\/7552"}],"wp:attachment":[{"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/media?parent=6973"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/categories?post=6973"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/tags?post=6973"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}