{"id":8112,"date":"2023-08-17T12:33:19","date_gmt":"2023-08-17T10:33:19","guid":{"rendered":"https:\/\/workingremotely.nl\/e-book\/"},"modified":"2026-05-22T12:41:11","modified_gmt":"2026-05-22T10:41:11","slug":"e-book","status":"publish","type":"page","link":"https:\/\/workingremotely.nl\/en\/e-book\/","title":{"rendered":"Free checklist"},"content":{"rendered":"\r\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex\">\r\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">&#13;\n<h3 class=\"wp-block-heading\">What does the roadmap say?<\/h3>&#13;\n<h3 class=\"wp-block-heading\"><span style=\"font-weight: 400; font-size: 16px;\">I&#8217;d love to help you get started! Here are the 11 essential steps to remote working with a comprehensive checklist. Including:  <\/span><\/h3>&#13;\n<ul>&#13;\n<li style=\"font-weight: 400;\" aria-level=\"1\">Check of jouw werk remote k\u00e1n<\/li>&#13;\n<li style=\"font-weight: 400;\" aria-level=\"1\">Vind &amp; gebruik de juiste vacature platforms<\/li>&#13;\n<li style=\"font-weight: 400;\" aria-level=\"1\">Zorg voor een remote-proof CV &amp; online profiel<\/li>&#13;\n<li style=\"font-weight: 400;\" aria-level=\"1\">Leer jezelf deze belangrijke online skills aan<\/li>&#13;\n<li style=\"font-weight: 400;\" aria-level=\"1\">Overtuig je (huidige) werkgever of opdrachtgever<\/li>&#13;\n<li style=\"font-weight: 400;\" aria-level=\"1\">Weet wat je mee moet nemen op workation<\/li>&#13;\n<li style=\"font-weight: 400;\" aria-level=\"1\">Durf te starten (ook als je nog niet alles weet)<\/li>&#13;\n<\/ul><\/ul>\r\n<p>&nbsp;<\/p>\r\n<\/div>\r\n\r\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n            <div id=\"mailerlite-form_8\" data-temp-id=\"6a1bcbd95768c\">\n                <div class=\"mailerlite-form\">\n                    <form action=\"\" method=\"post\" novalidate>\n                                                    <div class=\"mailerlite-form-title\"><h3>Wil jij remote werken? Start hier!<\/h3><\/div>\n                                                <div class=\"mailerlite-form-description\"><p><span style=\"font-weight: 400\">Vul je e-mailadres in en je ontvangt de checklist direct in je mailbox.<\/span><\/p>\n<\/div>\n                        <div class=\"mailerlite-form-inputs\">\n                                                                                            <div class=\"mailerlite-form-field\">\n                                    <label for=\"mailerlite-8-field-name\">Naam<\/label>\n                                    <input id=\"mailerlite-8-field-name\"\n                                           type=\"text\"                                            name=\"form_fields[name]\"\n                                           placeholder=\"Naam\"\/>\n                                <\/div>\n                                                                                            <div class=\"mailerlite-form-field\">\n                                    <label for=\"mailerlite-8-field-email\">E-mailadres<\/label>\n                                    <input id=\"mailerlite-8-field-email\"\n                                           type=\"email\" required=\"required\"                                            name=\"form_fields[email]\"\n                                           placeholder=\"Je e-mailadres\"\/>\n                                <\/div>\n                                                        <div class=\"mailerlite-form-loader\">Please wait...<\/div>\n                            <div class=\"mailerlite-subscribe-button-container\">\n                                <button class=\"mailerlite-subscribe-submit\" type=\"submit\">\n                                    Download checklist                                <\/button>\n                            <\/div>\n                            <input type=\"hidden\" name=\"form_id\" value=\"8\"\/>\n                            <input type=\"hidden\" name=\"action\" value=\"mailerlite_subscribe_form\"\/>\n                            <input type=\"hidden\" name=\"ml_nonce\" value=\"86042972ad\"\/>\n                        <\/div>\n                        <div class=\"mailerlite-form-response\">\n                                                            <h4><p><span style=\"color: #339966\">Bedankt! Je ontvangt de checklist binnen enkele minuten in je mailbox.<\/span><\/p>\n<\/h4>\n                                                    <\/div>\n                    <\/form>\n                <\/div>\n            <\/div>\n        <script type=\"text\/javascript\" src='https:\/\/workingremotely.nl\/wp-content\/plugins\/official-mailerlite-sign-up-forms\/assets\/js\/localization\/validation-messages.js'><\/script>\n         <script type=\"text\/javascript\"> var selectedLanguage = \"nl\"; var validationMessages = messages[\"en\"]; if(selectedLanguage) { validationMessages = messages[selectedLanguage]; } window.addEventListener(\"load\", function () { var form_container = document.querySelector(`#mailerlite-form_8[data-temp-id=\"6a1bcbd95768c\"] form`); let submitButton = form_container.querySelector('.mailerlite-subscribe-submit'); submitButton.disabled = true; fetch('https:\/\/workingremotely.nl\/wp-admin\/admin-ajax.php', { method: 'POST', headers:{ 'Content-Type': 'application\/x-www-form-urlencoded', }, body: new URLSearchParams({ \"action\" : \"ml_create_nonce\", \"ml_nonce\" : form_container.querySelector(\"input[name='ml_nonce']\").value }) }) .then((response) => response.json()) .then((json) => { if(json.success) { form_container.querySelector(\"input[name='ml_nonce']\").value = json.data.ml_nonce; submitButton.disabled = false; } }) .catch((error) => { console.error('Error:', error); }); form_container.addEventListener('submit', (e) => { e.preventDefault(); let data = new URLSearchParams(new FormData(form_container)).toString(); let validationError = false; document.querySelectorAll('.mailerlite-form-error').forEach(el => el.remove()); Array.from(form_container.elements).forEach((input) => { if(input.type !== 'hidden') { if(input.required) { if(input.value == '') { validationError = true; let error = document.createElement(\"span\"); error.className = 'mailerlite-form-error'; error.textContent = validationMessages.required; input.after(error); return false; } } if((input.type == \"email\") && (!validateEmail(input.value))) { validationError = true; let error = document.createElement(\"span\"); error.className = 'mailerlite-form-error'; error.textContent = validationMessages.email; input.after(error); return false; } } }); if(validationError) { return false; } fade.out(form_container.querySelector('.mailerlite-subscribe-button-container'), () => { fade.in(form_container.querySelector('.mailerlite-form-loader')); }); fetch('https:\/\/workingremotely.nl\/wp-admin\/admin-ajax.php', { method: 'POST', headers:{ 'Content-Type': 'application\/x-www-form-urlencoded', }, body: data }) .then((response) => { fade.out(form_container.querySelector('.mailerlite-form-inputs'), () => { fade.in(form_container.querySelector('.mailerlite-form-response')); }); }) .catch((error) => { console.error('Error:', error); }); }); }, false); var fade = { out: function(el, fn = false) { var fadeOutEffect = setInterval(function () { if (!el.style.opacity) { el.style.opacity = 1; } if (el.style.opacity > 0) { el.style.opacity -= 0.1; } else { el.style.display = 'none'; clearInterval(fadeOutEffect); } }, 50); if( typeof (fn) == 'function') { fn(); } }, in: function(el) { var fadeInEffect = setInterval(function () { if (!el.style.opacity) { el.style.opacity = 0; } if (el.style.opacity < 1) { el.style.opacity = Number(el.style.opacity) + 0.1; } else { el.style.display = 'block'; clearInterval(fadeInEffect); } }, 50); } }; function validateEmail(email){ if(email.match( \/^(([^<>()[\\]\\\\.,;:\\s@\\\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\\\"]+)*)|(\\\".+\\\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))$\/ )) { return true; } return false; } <\/script> <br \/><\/div>\n<p><!-- \/wp:post-content --><\/div>\n<p><!-- \/wp:columns --><\/p>\n","protected":false},"excerpt":{"rendered":"<p>&#13; What does the roadmap say? &#13; I&#8217;d love to help you get started!&#8230; <a href=\"https:\/\/workingremotely.nl\/en\/e-book\/\"><\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-8112","page","type-page","status-publish","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/workingremotely.nl\/en\/wp-json\/wp\/v2\/pages\/8112","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/workingremotely.nl\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/workingremotely.nl\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/workingremotely.nl\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/workingremotely.nl\/en\/wp-json\/wp\/v2\/comments?post=8112"}],"version-history":[{"count":7,"href":"https:\/\/workingremotely.nl\/en\/wp-json\/wp\/v2\/pages\/8112\/revisions"}],"predecessor-version":[{"id":10859,"href":"https:\/\/workingremotely.nl\/en\/wp-json\/wp\/v2\/pages\/8112\/revisions\/10859"}],"wp:attachment":[{"href":"https:\/\/workingremotely.nl\/en\/wp-json\/wp\/v2\/media?parent=8112"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}