{"id":28,"date":"2017-05-11T11:15:07","date_gmt":"2017-05-11T11:15:07","guid":{"rendered":"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/pass-field-input-value-to-another-field"},"modified":"2022-07-12T14:12:33","modified_gmt":"2022-07-12T14:12:33","slug":"pass-field-input-value-to-another-field","status":"publish","type":"post","link":"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/pass-field-input-value-to-another-field\/","title":{"rendered":"How to Pass Value From One Form Field To Another Using JavaScript"},"content":{"rendered":"<p>(Updated 12\/19\/2019)<\/p>\n<p>There are two scenarios where you want to pass value from one field to another:<\/p>\n<ul>\n<li>Pass value from one field to another within the same form<\/li>\n<li>Pass value from one form to another form<\/li>\n<\/ul>\n<p>Both of these scenarios require JavaScript experience, however, one of them can be achieved easily without coding anything by building your online form with 123FormBuilder\u00a0and following this tutorial. The other scenario can also be done with 123FormBuilder, but by following a workaround that needs a bit of JavaScript knowledge. Luckily for you, I&#8217;ve included the steps below.<\/p>\n<p>This being said, I&#8217;m going to use 123FormBuilder in both my tutorials since it&#8217;s a <a href=\"https:\/\/123formbuilder.polarbuildingcleaning.net\/\">web form builder<\/a> that anyone can use easily for creating <a href=\"\/web-forms\/\">web forms<\/a> within minutes.<\/p>\n<div class=\"cta center\"><a class=\"button outline\" href=\"\/signup.html\" rel=\"noopener\"> Get Your Versatile Form Builder Here <\/a><\/div>\n\n<h2>What is JavaScript?<\/h2>\n<p>JavaScript can be used in many ways on your forms to extend their capabilities and control interactions. The possibilities are endless and with the invention of TypeScript, there&#8217;s no telling how far we can go with creating high-engaging web forms.<\/p>\n<p>If you are new to JavaScript or don\u2019t have many technical skills, you don\u2019t need to worry. I&#8217;m going to guide you through the process.<\/p>\n<h2>How to Pass Value From One Field to Another Field Within the Same Form?<\/h2>\n<p>What do we want to achieve here? Well, if someone starts completing the online form and gets to fill a particular field, the input will be automatically copied to another field. This works great for forms where the user has to provide the same information more than once. To achieve this with a <strong>123FormBuilder<\/strong> web form, you\u2019ll need to enable the JavaScript feature on your form, which is located in the <strong>Advanced<\/strong> section, and use a JavaScript snippet.<\/p>\n<p><b>Note<\/b>: To enable custom JS on your form, you&#8217;ll need the <b>Platinum<\/b> subscription.<\/p>\n<p><b>Step 1. Create Your JavaScript file<\/b><br \/>\nThere are two types of JavaScript code you can use here:<\/p>\n<ul>\n<li>the script you use when you want to pass value from one field to another and they are of the same type;<\/li>\n<li>the script you use when you want to pass field value from one field to another and they are of different types.<\/li>\n<\/ul>\n<p>When you want to <strong>pass value between fields of the same type<\/strong>, open\u00a0your notepad and copy the code provided below:<\/p>\n<pre>\"(function(){\r\n\r\nwindow.addEventListener('load', function(){\r\n\r\nvar sourceControlId = 41171190, \/** THE ID OF THE SENDER CONTROL *\/\r\n\r\ntargetControlId = 41171191, \/** THE ID OF THE RECEIVER CONTROL **\/\r\n\r\nsourceControlInstance = loader.getEngine().getDocument().getElementById(sourceControlId),\r\n\r\ntargetControlInstance = loader.getEngine().getDocument().getElementById(targetControlId);\r\n\r\nsourceControlInstance.on('value-change', function(){\r\n\r\ntargetControlInstance.setValue( sourceControlInstance.getValue() );\r\n\r\n});\r\n\r\ntargetControlInstance.setValue( sourceControlInstance.getValue() );\r\n\r\n});\r\n\r\n})();\"\u00a0\r\n\r\n\r\n<\/pre>\n<pre><\/pre>\n<p>When you want to <strong>pass value between fields of different types<\/strong>, open\u00a0your notepad and copy the code provided below:<\/p>\n<pre>\"(function(){\r\n\r\nwindow.addEventListener('load', function(){\r\n\r\nvar sourceControlId = 34743361, \/** THE ID OF THE SENDER CONTROL *\/\r\n\r\ntargetControlId = 34743365, \/** THE ID OF THE RECEIVER CONTROL **\/\r\n\r\ndomAbstractionLayer = loader.getDOMAbstractionLayer(),\r\n\r\nsourceControlInstance = loader.getEngine().getDocument().getElementById(sourceControlId);\r\n\r\nsourceControlInstance.on('value-change', function(){\r\n\r\ndomAbstractionLayer.setControlValueById(\r\n\r\nString(targetControlId),\r\n\r\ndomAbstractionLayer.getControlValueById(\r\n\r\nString(sourceControlId)\r\n\r\n)\r\n\r\n);\r\n\r\n});\r\n\r\ndomAbstractionLayer.setControlValueById(\r\n\r\nString(targetControlId),\r\n\r\ndomAbstractionLayer.getControlValueById(\r\n\r\nString(sourceControlId)\r\n\r\n)\r\n\r\n);\r\n\r\n});\r\n\r\n})();\"<\/pre>\n<p>Now you will need to adjust the code a bit. You will need the ID of the field from where you are going to pass its input value and the ID of the field where the input value is passed.<\/p>\n<p>Basically, what you need to keep in mind is the following:<\/p>\n<ul>\n<li>sourceControlInstance is where your source field ID should go<\/li>\n<li>targetControlId is where your target field ID should go<\/li>\n<\/ul>\n<p>Replace\u00a034743361, respectively\u00a034743365 in the third and fourth lines of the code with your source field ID(the field from which you want to pass value), respectively with your target field ID (the field into which you want the value to be passed).<\/p>\n<p>The same rule applies to the script designated for value transfer between fields of the same type.<\/p>\n<p>To find out <strong>what your source field ID and target field ID are<\/strong>, you will first have to enable developer tools in your browser. You can check on how to do this on <a href=\"https:\/\/developer.chrome.com\/devtools\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">Google Chrome<\/a>, <a href=\"https:\/\/developer.mozilla.org\/en-US\/docs\/Tools\/Settings\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">Mozilla Firefox<\/a>, <a href=\"https:\/\/developer.apple.com\/library\/archive\/documentation\/AppleApplications\/Conceptual\/Safari_Developer_Guide\/GettingStarted\/GettingStarted.html\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">Safari<\/a>, <a href=\"https:\/\/dev.opera.com\/extensions\/testing\/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">Opera<\/a> and <a href=\"https:\/\/docs.microsoft.com\/en-us\/previous-versions\/windows\/internet-explorer\/ie-developer\/samples\/gg589507(v=vs.85)?redirectedfrom=MSDN\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">IE<\/a>.<\/p>\n<p><strong>Next<\/strong>, view your online form from a visitor&#8217;s perspective and right-click the field input from where you want to pass its value. An option that allows you to inspect elements should appear in the context menu. Click it to continue.<\/p>\n<p style=\"text-align: center;\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full\" title=\"Use inspect element browser tool\" src=\"https:\/\/s3-us-west-2.amazonaws.com\/staticresources123\/blog-images\/inspect-web-form-fields.png\" alt=\"using inspect element to pass user input from one field to another on the form\" width=\"550\" height=\"354\" \/><\/p>\n<p>Look for the <strong>input<\/strong> tag and copy the field ID that appears after \u201ccontrol\u201d.<\/p>\n<p style=\"text-align: center;\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full\" title=\"Inspect field input to retrieve ID\" src=\"https:\/\/s3-us-west-2.amazonaws.com\/staticresources123\/blog-images\/form-field-input-id.png\" alt=\"pass user value from field to another by using the field ID\" width=\"562\" height=\"85\" \/><\/p>\n<p>Now get back to your notepad where the JavaScript code is located. Add your field ID by replacing the old one within the function:<\/p>\n<pre>demo123CF_CopyFieldValue.setFieldOriginID('field input ID goes here'); \r\n<\/pre>\n<p>Do the same for the second function, but replace the ID with that of the second field, instead.<\/p>\n<pre>demo123CF_CopyFieldValue.setFieldDestinationID('field input ID goes here');\r\n<\/pre>\n<p><strong>Finally, save<\/strong> your notepad document as a JavaScript file. You can do this easily by providing the .js extension next to the name. For example <strong>passvalue.js<\/strong><br \/>\n<strong>Step 2. Apply The JavaScript On The Form<\/strong><br \/>\nAt 123FormBuilder, in order to add a custom JavaScript to your web form, you will need to go the <strong>Settings \u2192 Advanced<\/strong> section and click the <strong>Form<\/strong> tab. There, tick the option <strong>Add a JS script to your form<\/strong> and provide the URL of your script.<\/p>\n<p style=\"text-align: center;\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full\" title=\"Add JS to form feature on 123FormBuilder\" src=\"https:\/\/s3-us-west-2.amazonaws.com\/staticresources123\/blog-images\/add-js-url-to-form.png\" alt=\"passing value from one field input to another with javascript url on form\" width=\"550\" height=\"404\" \/><\/p>\n<p>If you don\u2019t have a server where you can upload the JS file, try <a href=\"https:\/\/pages.github.com\/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">GitHub<\/a>. It&#8217;s a free hosting platform for developers where they can upload all sorts of scripts. Create an account on GitHUb and upload your .js file there. Obtain the URL to your script and provide it in the JS URL box on 123FormBuilder.<\/p>\n<p><b>Important<\/b>: The URL of your Javascript file must be hosted on a secure (HTTPS) environment.<\/p>\n<h2>How to Pass Value From One Form To Another Form?<\/h2>\n<p>There&#8217;s a Javascript snippet for everything, but here you can use 123FormBuilder&#8217;s built-in <b>variables redirect<\/b> option. So, instead of using JavaScript again, follow these steps:<\/p>\n<ol>\n<li style=\"list-style-type: none;\">\n<ol>\n<li>In your web form&#8217;s settings on 123FormBuilder, go to the <b>Settings<\/b> \u2192 <b>Thank You Page and Redirects<\/b> section and select the option <b>Redirect with custom variables<\/b>.<\/li>\n<\/ol>\n<\/li>\n<\/ol>\n<ol>\n<li>Build your custom URL of your first form (so the one from where you want to pass value from).<br \/>\nHere&#8217;s an example: \/\/www.123formbuilder.com\/sf.php?s=form-222222&amp;customVars123=yes&amp;control2323232=request1212121<\/p>\n<ul>\n<li><b>form-222222<\/b> represents your form ID (see it in the <b>Publish<\/b> &#8211; <b>Link<\/b> section).<\/li>\n<li><b>customerVars123<\/b> is a constant. Nothing to change here.<\/li>\n<li><b>control2323232<\/b> is the ID of the field where the value will be passed to.<\/li>\n<li><b>request1212121<\/b> is the ID of the field from you where you pass the value.<\/li>\n<\/ul>\n<p><b>Note:<\/b> You cannot pass uploaded files, single or multiple field selections, likert scale values or phone field values with customVars<\/li>\n<li>Now, when publishing your form, use the customVars link instead of the standard one. And that&#8217;s about it.<\/li>\n<\/ol>\n<p>For additional help, feel free to browse our <a title=\"How to pass user input from one form to another\" href=\"https:\/\/123formbuilder.polarbuildingcleaning.net\/docs\/how-to-pass-user-input-from-one-form-to-another\/\" target=\"_blank\" rel=\"noopener noreferrer\">documentation<\/a> or contact our customer care agents.<\/p>\n<div class=\"cta center\"><a class=\"button outline\" href=\"\/signup.html\" rel=\"noopener\"> Beginner or Advanced, This Form Builder&#8217;s For You <\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>(Updated 12\/19\/2019) There are two scenarios where you want to pass value from one field to another: Pass value from one field to another within the same form Pass value from one form to another form Both of these scenarios require JavaScript experience, however, one of them can be achieved easily without coding anything by [&hellip;]<\/p>\n","protected":false},"author":31,"featured_media":354,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[16,18,20],"tags":[],"class_list":["post-28","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-form-favourites","category-level-up-your-forms","category-ultimate-guides"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v24.2 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Passing User Input From One Field To Another On The Form<\/title>\n<meta name=\"description\" content=\"This is a tutorial where you will learn how to pass input values from one field to another with this JavaScript code that you can copy in your js file.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/pass-field-input-value-to-another-field\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Pass Value From One Form Field To Another Using JavaScript\" \/>\n<meta property=\"og:description\" content=\"This is a tutorial where you will learn how to pass input values from one field to another with this JavaScript code that you can copy in your js file.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/pass-field-input-value-to-another-field\/\" \/>\n<meta property=\"og:site_name\" content=\"123FormBuilder Blog\" \/>\n<meta property=\"article:published_time\" content=\"2017-05-11T11:15:07+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-07-12T14:12:33+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdn.marketing123.123formbuilder.com\/wp-content\/uploads\/sites\/2\/2017\/05\/javascript.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"800\" \/>\n\t<meta property=\"og:image:height\" content=\"600\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Oscar Erk\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Oscar Erk\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Passing User Input From One Field To Another On The Form","description":"This is a tutorial where you will learn how to pass input values from one field to another with this JavaScript code that you can copy in your js file.","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:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/pass-field-input-value-to-another-field\/","og_locale":"en_US","og_type":"article","og_title":"How to Pass Value From One Form Field To Another Using JavaScript","og_description":"This is a tutorial where you will learn how to pass input values from one field to another with this JavaScript code that you can copy in your js file.","og_url":"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/pass-field-input-value-to-another-field\/","og_site_name":"123FormBuilder Blog","article_published_time":"2017-05-11T11:15:07+00:00","article_modified_time":"2022-07-12T14:12:33+00:00","og_image":[{"width":800,"height":600,"url":"https:\/\/cdn.marketing123.123formbuilder.com\/wp-content\/uploads\/sites\/2\/2017\/05\/javascript.jpg","type":"image\/jpeg"}],"author":"Oscar Erk","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Oscar Erk","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/pass-field-input-value-to-another-field\/#article","isPartOf":{"@id":"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/pass-field-input-value-to-another-field\/"},"author":{"name":"Oscar Erk","@id":"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/#\/schema\/person\/cdebd32c7d95dbb692eb685554790929"},"headline":"How to Pass Value From One Form Field To Another Using JavaScript","datePublished":"2017-05-11T11:15:07+00:00","dateModified":"2022-07-12T14:12:33+00:00","mainEntityOfPage":{"@id":"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/pass-field-input-value-to-another-field\/"},"wordCount":1054,"publisher":{"@id":"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/#organization"},"image":{"@id":"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/pass-field-input-value-to-another-field\/#primaryimage"},"thumbnailUrl":"https:\/\/cdn.marketing123.123formbuilder.com\/wp-content\/uploads\/sites\/2\/2017\/05\/javascript.jpg","articleSection":["Best Practices","Form Tips","Guides"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/pass-field-input-value-to-another-field\/","url":"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/pass-field-input-value-to-another-field\/","name":"Passing User Input From One Field To Another On The Form","isPartOf":{"@id":"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/pass-field-input-value-to-another-field\/#primaryimage"},"image":{"@id":"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/pass-field-input-value-to-another-field\/#primaryimage"},"thumbnailUrl":"https:\/\/cdn.marketing123.123formbuilder.com\/wp-content\/uploads\/sites\/2\/2017\/05\/javascript.jpg","datePublished":"2017-05-11T11:15:07+00:00","dateModified":"2022-07-12T14:12:33+00:00","description":"This is a tutorial where you will learn how to pass input values from one field to another with this JavaScript code that you can copy in your js file.","breadcrumb":{"@id":"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/pass-field-input-value-to-another-field\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/pass-field-input-value-to-another-field\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/pass-field-input-value-to-another-field\/#primaryimage","url":"https:\/\/cdn.marketing123.123formbuilder.com\/wp-content\/uploads\/sites\/2\/2017\/05\/javascript.jpg","contentUrl":"https:\/\/cdn.marketing123.123formbuilder.com\/wp-content\/uploads\/sites\/2\/2017\/05\/javascript.jpg","width":800,"height":600,"caption":"cactus sitting next to a pile of coding books"},{"@type":"BreadcrumbList","@id":"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/pass-field-input-value-to-another-field\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/"},{"@type":"ListItem","position":2,"name":"Form Tips","item":"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/tag\/level-up-your-forms"},{"@type":"ListItem","position":3,"name":"How to Pass Value From One Form Field To Another Using JavaScript"}]},{"@type":"WebSite","@id":"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/#website","url":"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/","name":"123FormBuilder Blog","description":"","publisher":{"@id":"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/#organization","name":"123FormBuilder Blog","url":"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdn.marketing123.123formbuilder.com\/wp-content\/uploads\/sites\/2\/2020\/12\/logo.png","contentUrl":"https:\/\/cdn.marketing123.123formbuilder.com\/wp-content\/uploads\/sites\/2\/2020\/12\/logo.png","width":131,"height":25,"caption":"123FormBuilder Blog"},"image":{"@id":"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/#\/schema\/person\/cdebd32c7d95dbb692eb685554790929","name":"Oscar Erk","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/afa59182d087bbb3a497493c89d3791b8d8f86724a08cf49ee5e55c34f1c4305?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/afa59182d087bbb3a497493c89d3791b8d8f86724a08cf49ee5e55c34f1c4305?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/afa59182d087bbb3a497493c89d3791b8d8f86724a08cf49ee5e55c34f1c4305?s=96&d=mm&r=g","caption":"Oscar Erk"},"url":"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/author\/oscar-erk123formbuilder-com"}]}},"acf":[],"_links":{"self":[{"href":"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/wp-json\/wp\/v2\/posts\/28","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/wp-json\/wp\/v2\/users\/31"}],"replies":[{"embeddable":true,"href":"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/wp-json\/wp\/v2\/comments?post=28"}],"version-history":[{"count":7,"href":"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/wp-json\/wp\/v2\/posts\/28\/revisions"}],"predecessor-version":[{"id":4520,"href":"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/wp-json\/wp\/v2\/posts\/28\/revisions\/4520"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/wp-json\/wp\/v2\/media\/354"}],"wp:attachment":[{"href":"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/wp-json\/wp\/v2\/media?parent=28"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/wp-json\/wp\/v2\/categories?post=28"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/123formbuilder.polarbuildingcleaning.net\/blog\/wp-json\/wp\/v2\/tags?post=28"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}