<script type="text/javascript"></script>    <script type="text/javascript">
    document.addEventListener("DOMContentLoaded", function() {
        // Double-check language setting in the browser
        var isSpanish = document.getElementsByTagName('html')[0].getAttribute('lang') === 'es-ES';
        if (!isSpanish) return;
        
        // Prepare all translation data for JavaScript
        var translations = {
            field_labels: {"Add your team members.":"Agrega a los miembros de tu equipo.","Team member email address":"Direcci\u00f3n de correo electr\u00f3nico del miembro del equipo","What is your team member's professional title?":"\u00bfCu\u00e1l es su t\u00edtulo profesional?","What is your team member's PRIMARY ROLE on this project?":"\u00bfC\u00f3mo te describir\u00edas a ti mismo?","Is your team member an assistant facilitator?":"\u00bfTu miembro del equipo es un facilitador asistente?"},
            placeholders: {"Enter email address":"Ingresa la direcci\u00f3n de correo electr\u00f3nico","Enter additional information":"Ingresa informaci\u00f3n adicional"},
            checkbox_choices: {"Clinician":"Cl\u00ednico\/a","Quality improvement specialist":"Especialista en mejora de la calidad","Researcher":"Investigador\/a","Public health practitioner":"Practicante de salud p\u00fablica","Program manager":"Gerente de programa","Implementation specialist":"Especialista en implementaci\u00f3n","Clinical administrator (e.g., Medical director)":"Administrador cl\u00ednico (p. ej., director m\u00e9dico)","Academic administrator (e.g., Department chair, dean)":"Administrador acad\u00e9mico (p. ej., director de departamento, decano)","Other":"Otro"},
            radio_choices: {"Yes":"S\u00ed","No":"No"},
            buttons: {"Add Team Member":"Agregar Miembro del Equipo","Remove":"Eliminar","Are you sure you want to remove this item?":"\u00bfEst\u00e1s seguro de que quieres eliminar este elemento?"}        };
        
        var teamMemberTranslation = "Miembro del Equipo";
        
        // Wait for page to fully load, then translate everything
        setTimeout(function() {
            translateTeamMemberRepeater();
        }, 1000);
        
        // When users add new team members, translate those too
        if (typeof window.gformAddRepeaterItem_original === 'undefined') {
            window.gformAddRepeaterItem_original = window.gformAddRepeaterItem;
            window.gformAddRepeaterItem = function(element) {
                var result = window.gformAddRepeaterItem_original(element);
                setTimeout(translateTeamMemberRepeater, 500);
                return result;
            };
        }
        
        // Translate when Gravity Forms refreshes the page
        jQuery(document).on('gform_post_render', function() {
            setTimeout(translateTeamMemberRepeater, 500);
        });
        
        // Add Spanish CSS for repeater item titles
        function addSpanishRepeaterCSS() {
            if (document.getElementById('spanish-repeater-css')) return;
            
            var css = `
                body .gfield_repeater_item:before {
                    content: "${teamMemberTranslation} " counter(team-member) !important;
                }
            `;
            var style = document.createElement('style');
            style.id = 'spanish-repeater-css';
            style.textContent = css;
            document.head.appendChild(style);
        }
        
        // Main translation function - translates all form elements
        function translateTeamMemberRepeater() {
            addSpanishRepeaterCSS();
            
            // Translate form labels and field legends
            translateElements('legend.gfield_label, label.gfield_label', translations.field_labels);
            
            // Translate input placeholder text
            translatePlaceholders(translations.placeholders);
            
            // Translate checkbox and radio button options
            translateChoiceLabels(translations.checkbox_choices, translations.radio_choices);
            
            // Translate buttons and confirmation messages
            translateButtons(translations.buttons);
        }
        
        // Helper function: Translate text elements like labels and legends
        function translateElements(selector, translationMap) {
            var elements = document.querySelectorAll(selector);
            
            elements.forEach(function(element) {
                var originalText = element.textContent.trim();
                // Handle required field indicators: "(Required)" becomes "(Obligatorio)"
                var textForComparison = originalText.replace(/\s*\(Required\)\s*$/, '');
                
                if (translationMap[textForComparison]) {
                    var hasRequired = originalText.includes('(Required)');
                    var translatedText = translationMap[textForComparison];
                    if (hasRequired) {
                        translatedText += ' (Obligatorio)';
                    }
                    element.textContent = translatedText;
                }
            });
        }
        
        // Helper function: Translate input placeholder text
        function translatePlaceholders(translationMap) {
            Object.keys(translationMap).forEach(function(englishText) {
                var inputs = document.querySelectorAll('input[placeholder="' + englishText + '"]');
                inputs.forEach(function(input) {
                    input.setAttribute('placeholder', translationMap[englishText]);
                });
            });
        }
        
        // Helper function: Translate checkbox and radio button labels
        function translateChoiceLabels(checkboxTranslations, radioTranslations) {
            // Translate checkbox labels
            var checkboxLabels = document.querySelectorAll('.gfield_checkbox label.gform-field-label--type-inline');
            checkboxLabels.forEach(function(label) {
                var originalText = label.textContent.trim();
                if (checkboxTranslations[originalText]) {
                    label.textContent = checkboxTranslations[originalText];
                }
            });
            
            // Translate radio button labels
            var radioLabels = document.querySelectorAll('.gfield_radio label.gform-field-label--type-inline');
            radioLabels.forEach(function(label) {
                var originalText = label.textContent.trim();
                if (radioTranslations[originalText]) {
                    label.textContent = radioTranslations[originalText];
                }
            });
        }
        
        // Helper function: Translate buttons and their confirmation messages
        function translateButtons(translationMap) {
            var buttonConfig = [
                { selector: '.add_repeater_item_text', updateConfirm: false },
                { selector: '.remove_repeater_item_text', updateConfirm: true }
            ];
            
            buttonConfig.forEach(function(config) {
                var buttons = document.querySelectorAll(config.selector);
                buttons.forEach(function(button) {
                    var originalText = button.textContent.trim();
                    if (translationMap[originalText]) {
                        button.textContent = translationMap[originalText];
                    }
                    
                    // For remove buttons, also translate the confirmation popup
                    if (config.updateConfirm) {
                        var onclick = button.getAttribute('onclick');
                        if (onclick && onclick.includes('Are you sure you want to remove this item?')) {
                            var newOnclick = onclick.replace(
                                'Are you sure you want to remove this item?', 
                                translationMap['Are you sure you want to remove this item?']
                            );
                            button.setAttribute('onclick', newOnclick);
                        }
                    }
                });
            });
        }
    });
    </script>
            <script type="text/javascript">
        jQuery(document).ready(function($) {
            
            // Configuration data passed from PHP
            var formConfigs = [{"sourceField":5,"targetField":2,"rules":{"facilitator":"new","team":"existing"}}];
            var formId = 4;
            
            // Initialize auto-population for each configuration
            formConfigs.forEach(function(config) {
                initAutoPopulation(formId, config);
            });
            
            // Auto-population handler function
            function initAutoPopulation(formId, config) {
                var sourceSelector = '#gform_' + formId + ' #field_' + formId + '_' + config.sourceField + ' input[type="radio"], ' +
                                   '#gform_' + formId + ' #field_' + formId + '_' + config.sourceField + ' select';
                                   
                var targetSelector = '#gform_' + formId + ' #field_' + formId + '_' + config.targetField + ' input[type="radio"], ' +
                                   '#gform_' + formId + ' #field_' + formId + '_' + config.targetField + ' select';
                
                var $sourceField = $(sourceSelector);
                var $targetField = $(targetSelector);
                
                // Bind change event
                $sourceField.on('change', function() {
                    var userChoice = $(this).val();
                    var autoSelectValue = config.rules[userChoice];
                    
                    if (autoSelectValue) {
                        handleAutoSelection($targetField, autoSelectValue);
                    }
                });
            }
            
            // Handle the actual auto-selection
            function handleAutoSelection($targetField, autoSelectValue) {
                // Handle radio buttons
                var $targetRadio = $targetField.filter('input[type="radio"][value="' + autoSelectValue + '"]');
                if ($targetRadio.length) {
                    $targetField.filter('input[type="radio"]').prop('checked', false);
                    $targetRadio.prop('checked', true).trigger('change');
                }
                
                // Handle select dropdowns
                var $targetSelect = $targetField.filter('select');
                if ($targetSelect.length) {
                    $targetSelect.val(autoSelectValue).trigger('change');
                }
            }
            
        });
        </script>
        {"id":343,"date":"2022-06-06T18:53:27","date_gmt":"2022-06-07T00:53:27","guid":{"rendered":"https:\/\/prismtool.org\/comencemos\/individual-o-miembro-de-un-equipo\/"},"modified":"2023-06-14T10:07:30","modified_gmt":"2023-06-14T16:07:30","slug":"individual-o-miembro-de-un-equipo","status":"publish","type":"page","link":"https:\/\/prismtool.org\/es\/comencemos\/individual-o-miembro-de-un-equipo\/","title":{"rendered":"\u00bfIndividual o miembro de un equipo?"},"content":{"rendered":"<div class=\"wpb-content-wrapper\"><p>[vc_section full_width=&#8221;stretch_row&#8221;][vc_row bottom_padding=&#8221;40&#8243; class=&#8221;prism-form-container&#8221;][vc_column width=&#8221;1\/1&#8243;][vc_column_text]<\/p>\n<h3>\u00bfEst\u00e1 completando la herramienta de manera individual o como miembro de un equipo?<\/h3>\n<p>Seleccione a continuaci\u00f3n la opci\u00f3n que corresponda. Si est\u00e1 completando como miembro del equipo, tendr\u00e1 la opci\u00f3n de crear un nuevo equipo o ingresar el c\u00f3digo de un equipo existente.[\/vc_column_text]<div class=\"spacer\" style=\"height: 40px;\"><\/div><script type=\"text\/javascript\">\n\/* <![CDATA[ *\/\nvar gform;gform||(document.addEventListener(\"gform_main_scripts_loaded\",function(){gform.scriptsLoaded=!0}),document.addEventListener(\"gform\/theme\/scripts_loaded\",function(){gform.themeScriptsLoaded=!0}),window.addEventListener(\"DOMContentLoaded\",function(){gform.domLoaded=!0}),gform={domLoaded:!1,scriptsLoaded:!1,themeScriptsLoaded:!1,isFormEditor:()=>\"function\"==typeof InitializeEditor,callIfLoaded:function(o){return!(!gform.domLoaded||!gform.scriptsLoaded||!gform.themeScriptsLoaded&&!gform.isFormEditor()||(gform.isFormEditor()&&console.warn(\"The use of gform.initializeOnLoaded() is deprecated in the form editor context and will be removed in Gravity Forms 3.1.\"),o(),0))},initializeOnLoaded:function(o){gform.callIfLoaded(o)||(document.addEventListener(\"gform_main_scripts_loaded\",()=>{gform.scriptsLoaded=!0,gform.callIfLoaded(o)}),document.addEventListener(\"gform\/theme\/scripts_loaded\",()=>{gform.themeScriptsLoaded=!0,gform.callIfLoaded(o)}),window.addEventListener(\"DOMContentLoaded\",()=>{gform.domLoaded=!0,gform.callIfLoaded(o)}))},hooks:{action:{},filter:{}},addAction:function(o,r,e,t){gform.addHook(\"action\",o,r,e,t)},addFilter:function(o,r,e,t){gform.addHook(\"filter\",o,r,e,t)},doAction:function(o){gform.doHook(\"action\",o,arguments)},applyFilters:function(o){return gform.doHook(\"filter\",o,arguments)},removeAction:function(o,r){gform.removeHook(\"action\",o,r)},removeFilter:function(o,r,e){gform.removeHook(\"filter\",o,r,e)},addHook:function(o,r,e,t,n){null==gform.hooks[o][r]&&(gform.hooks[o][r]=[]);var d=gform.hooks[o][r];null==n&&(n=r+\"_\"+d.length),gform.hooks[o][r].push({tag:n,callable:e,priority:t=null==t?10:t})},doHook:function(r,o,e){var t;if(e=Array.prototype.slice.call(e,1),null!=gform.hooks[r][o]&&((o=gform.hooks[r][o]).sort(function(o,r){return o.priority-r.priority}),o.forEach(function(o){\"function\"!=typeof(t=o.callable)&&(t=window[t]),\"action\"==r?t.apply(null,e):e[0]=t.apply(null,e)})),\"filter\"==r)return e[0]},removeHook:function(o,r,t,n){var e;null!=gform.hooks[o][r]&&(e=(e=gform.hooks[o][r]).filter(function(o,r,e){return!!(null!=n&&n!=o.tag||null!=t&&t!=o.priority)}),gform.hooks[o][r]=e)}});\n\/* ]]> *\/\n<\/script>\n\n                <div class='gf_browser_gecko gform_wrapper gravity-theme gform-theme--no-framework prism_form_team-individual_wrapper' data-form-theme='gravity-theme' data-form-index='0' id='gform_wrapper_4' style='display:none'>\n                        <div class='gform_heading'>\n\t\t\t\t\t\t\t<p class='gform_required_legend'>&quot;<span class=\"gfield_required gfield_required_asterisk\">*<\/span>&quot; indicates required fields<\/p>\n                        <\/div><form method='post' enctype='multipart\/form-data'  id='gform_4' class='prism_form_team-individual' action='\/es\/wp-json\/wp\/v2\/pages\/343' data-formid='4' novalidate>\n                        <div class='gform-body gform_body'><div id='gform_fields_4' class='gform_fields left_label form_sublabel_below description_below validation_below'><fieldset id=\"field_4_5\" class=\"gfield gfield--type-radio gfield--type-choice gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label' >\u00bfEst\u00e1 completando la herramienta de manera &lt;b&gt;individual&lt;\/b&gt; o como &lt;b&gt;miembro de un equipo&lt;\/b&gt;?<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_4_5'>\n\t\t\t<div class='gchoice gchoice_4_5_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_5' type='radio' value='individual'  id='choice_4_5_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_4_5_0' id='label_4_5_0' class='gform-field-label gform-field-label--type-inline'>De manera individual<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_4_5_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_5' type='radio' value='team'  id='choice_4_5_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_4_5_1' id='label_4_5_1' class='gform-field-label gform-field-label--type-inline'>Como miembro de un equipo<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_4_5_2'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_5' type='radio' value='facilitator'  id='choice_4_5_2' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_4_5_2' id='label_4_5_2' class='gform-field-label gform-field-label--type-inline'>As a Team Lead \/ Facilitator<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><fieldset id=\"field_4_2\" class=\"gfield gfield--type-radio gfield--type-choice gfield--width-half gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_hidden\"  ><div class=\"admin-hidden-markup\"><i class=\"gform-icon gform-icon--hidden\" aria-hidden=\"true\" title=\"This field is hidden when viewing the form\"><\/i><span>This field is hidden when viewing the form<\/span><\/div><legend class='gfield_label gform-field-label' >\u00bfEs un equipo &lt;b&gt;nuevo&lt;\/b&gt; o &lt;b&gt;existente&lt;\/b&gt;?*<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_4_2'>\n\t\t\t<div class='gchoice gchoice_4_2_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='new'  id='choice_4_2_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_4_2_0' id='label_4_2_0' class='gform-field-label gform-field-label--type-inline'>Nuevo equipo<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_4_2_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='existing'  id='choice_4_2_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_4_2_1' id='label_4_2_1' class='gform-field-label gform-field-label--type-inline'>Equipo existente (tengo un c\u00f3digo)<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><div id=\"field_4_9\" class=\"gfield gfield--type-html gfield--width-half infoIconForm team_code_info gfield_html gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><span class=\"tooltips \" style=\"\" title=\"Si un miembro del equipo le ha proporcionado un c\u00f3digo, introd\u00fazcalo aqu\u00ed para enlazar sus respuestas. Si no tiene un c\u00f3digo, elija nuevo equipo. Tendr\u00e1 la opci\u00f3n de crear un c\u00f3digo m\u00e1s adelante.\"><i class=\"fa fa-info-circle minti-icon\" style=\"color:#1f75bc !important; font-size: 16px; margin: 0px 0px 0px 0px\"><\/i><\/span><\/div><div id=\"field_4_8\" class=\"gfield gfield--type-text gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_4_8'>Introduzca su &lt;b&gt;c\u00f3digo de equipo&lt;\/b&gt;:<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_8' id='input_4_8' type='text' value='' class='medium'    placeholder='PTJ#####' aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_4_7\" class=\"gfield gfield--type-text gfield--width-full gfield_contains_required field_sublabel_below gfield--has-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_4_7'>Introduzca el &lt;b&gt;nombre de su programa&lt;\/b&gt;:<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_7' id='input_4_7' type='text' value='' class='medium'  aria-describedby=\"gfield_description_4_7\"  placeholder='p. ej., Programa para dejar de fumar' aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><div class='gfield_description' id='gfield_description_4_7'>Lo que ponga aqu\u00ed se utilizar\u00e1 en las p\u00e1ginas siguientes<\/div><\/div><div id=\"field_4_15\" class=\"gfield gfield--type-html gfield--width-third infoIconForm program_info gfield_html field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_hidden\"  ><p>Introduzca el <b>nombre de su programa<\/b>:<\/p><\/div><div id=\"field_4_16\" class=\"gfield gfield--type-html gfield--width-third infoIconForm program_info gfield_html gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_hidden\"  ><span class=\"tooltips \" style=\"\" title=\"&quot;Program&quot; refers to the procedure, practice, principle, product, policy, etc. that you are implementing. Choose a name here that will be used to refer to your program throughout this tool.\"><i class=\"fa fa-info-circle minti-icon\" style=\"color:#1f75bc !important; font-size: 16px; margin: 0px 0px 0px 0px\"><\/i><\/span><\/div><div id=\"field_4_14\" class=\"gfield gfield--type-text gfield--width-third field_sublabel_below gfield--no-description field_description_below hidden_label field_validation_below gfield_visibility_hidden\"  ><div class=\"admin-hidden-markup\"><i class=\"gform-icon gform-icon--hidden\" aria-hidden=\"true\" title=\"This field is hidden when viewing the form\"><\/i><span>This field is hidden when viewing the form<\/span><\/div><label class='gfield_label gform-field-label' for='input_4_14'>Untitled<\/label><div class='ginput_container ginput_container_text'><input name='input_14' id='input_4_14' type='text' value='' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_4_10\" class=\"gfield gfield--type-html gfield--width-full infoIconForm program_info gfield_html gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><span class=\"tooltips \" style=\"\" title=\"&quot;Program&quot; refers to the procedure, practice, principle, product, policy, etc. that you are implementing. Choose a name here that will be used to refer to your program throughout this tool.\"><i class=\"fa fa-info-circle minti-icon\" style=\"color:#1f75bc !important; font-size: 16px; margin: 0px 0px 0px 0px\"><\/i><\/span><\/div><div id=\"field_4_11\" class=\"gfield gfield--type-html gfield--width-full infoIconForm program_info gfield_html gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><span class=\"tooltips \" style=\"\" title=\"&quot;Program&quot; refers to the procedure, practice, principle, product, policy, etc. that you are implementing. Choose a name here that will be used to refer to your program throughout this tool.\"><i class=\"fa fa-info-circle minti-icon\" style=\"color:#1f75bc !important; font-size: 16px; margin: 0px 0px 0px 0px\"><\/i><\/span><\/div><\/div><\/div>\n        <div class='gform-footer gform_footer left_label'> <input type='submit' id='gform_submit_button_4' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' value='Enviar'  \/> \n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_4' value='postback' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_4' id='gform_theme_4' value='gravity-theme' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_4' id='gform_style_settings_4' value='[]' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_4' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='4' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_currency' data-currency='USD' value='7tEErmCSh6wLc1pO0ldn5rP4MitSL6KW3OYvfqR0vu0WnDL61IDUM9XhVeh\/a3KVt41Syw+Z0GzlCshutQXtcptPXHnbtZ0LzGJl9vzynaSJndc=' \/>\n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_4' value='WyJ7XCI1XCI6W1wiNjBkNTMxMTg2YmFlMjM5YTlhM2Y4ZmQ0MDEyNWUwNTBcIixcIjdiZjhhOTkyZGFjYjdmOTI2OGY0NGZmNDk5YzZiYTIzXCIsXCJiYTUyNjAyNDgzZDlhMWMzNDJkMjZiYThmMDQzMThhNVwiXX0iLCJiZGNiZGExNjM3ZTI1NTM0MGZlNDcxZDFjZmNmZDdmNSJd' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_4' id='gform_target_page_number_4' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_4' id='gform_source_page_number_4' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n                        <\/form>\n                        <\/div><script type=\"text\/javascript\">\n\/* <![CDATA[ *\/\n gform.initializeOnLoaded( function() {gformInitSpinner( 4, 'https:\/\/prismtool.org\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery('#gform_ajax_frame_4').on('load',function(){var contents = jQuery(this).contents().find('*').html();var is_postback = contents.indexOf('GF_AJAX_POSTBACK') >= 0;if(!is_postback){return;}var form_content = jQuery(this).contents().find('#gform_wrapper_4');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_4').length > 0;var is_redirect = contents.indexOf('gformRedirect(){') >= 0;var is_form = form_content.length > 0 && ! is_redirect && ! is_confirmation;var mt = parseInt(jQuery('html').css('margin-top'), 10) + parseInt(jQuery('body').css('margin-top'), 10) + 100;if(is_form){form_content.find('form').css('opacity', 0);jQuery('#gform_wrapper_4').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_4').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_4').removeClass('gform_validation_error');}setTimeout( function() { \/* delay the scroll by 50 milliseconds to fix a bug in chrome *\/  }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_4').val();gformInitSpinner( 4, 'https:\/\/prismtool.org\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery(document).trigger('gform_page_loaded', [4, current_page]);window['gf_submitting_4'] = false;}else if(!is_redirect){var confirmation_content = jQuery(this).contents().find('.GF_AJAX_POSTBACK').html();if(!confirmation_content){confirmation_content = contents;}jQuery('#gform_wrapper_4').replaceWith(confirmation_content);jQuery(document).trigger('gform_confirmation_loaded', [4]);window['gf_submitting_4'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_4').text());}else{jQuery('#gform_4').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"4\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_4\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_4\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_4\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 4, current_page );            if ( visibilityTestDiv ) {                visibilityTestDiv.parentNode.removeChild( visibilityTestDiv );            }        }        function debounce( func, wait, immediate ) {            var timeout;            return function() {                var context = this, args = arguments;                var later = function() {                    timeout = null;                    if ( !immediate ) func.apply( context, args );                };                var callNow = immediate && !timeout;                clearTimeout( timeout );                timeout = setTimeout( later, wait );                if ( callNow ) func.apply( context, args );            };        }        const debouncedTriggerPostRender = debounce( function() {            triggerPostRender();        }, 200 );        if ( visibilityTestDiv && visibilityTestDiv.offsetParent === null ) {            const observer = new MutationObserver( ( mutations ) => {                mutations.forEach( ( mutation ) => {                    if ( mutation.type === 'attributes' && visibilityTestDiv.offsetParent !== null ) {                        debouncedTriggerPostRender();                        observer.disconnect();                    }                });            });            observer.observe( document.body, {                attributes: true,                childList: false,                subtree: true,                attributeFilter: [ 'style', 'class' ],            });        } else {            triggerPostRender();        }    } );} ); \n\/* ]]> *\/\n<\/script>\n[\/vc_column][\/vc_row][\/vc_section]<\/p>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>[vc_section full_width=&#8221;stretch_row&#8221;][vc_row bottom_padding=&#8221;40&#8243; class=&#8221;prism-form-container&#8221;][vc_column width=&#8221;1\/1&#8243;][vc_column_text] \u00bfEst\u00e1 completando la herramienta de manera individual o como miembro de un equipo? Seleccione a continuaci\u00f3n la opci\u00f3n que corresponda. Si est\u00e1 completando como miembro del equipo, tendr\u00e1 la opci\u00f3n de crear un nuevo equipo o ingresar el c\u00f3digo de un equipo existente.[\/vc_column_text][\/vc_column][\/vc_row][\/vc_section]<\/p>\n","protected":false},"author":3,"featured_media":0,"parent":745,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"_lmt_disableupdate":"","_lmt_disable":"","footnotes":""},"class_list":["post-343","page","type-page","status-publish","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/prismtool.org\/es\/wp-json\/wp\/v2\/pages\/343","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/prismtool.org\/es\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/prismtool.org\/es\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/prismtool.org\/es\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/prismtool.org\/es\/wp-json\/wp\/v2\/comments?post=343"}],"version-history":[{"count":10,"href":"https:\/\/prismtool.org\/es\/wp-json\/wp\/v2\/pages\/343\/revisions"}],"predecessor-version":[{"id":752,"href":"https:\/\/prismtool.org\/es\/wp-json\/wp\/v2\/pages\/343\/revisions\/752"}],"up":[{"embeddable":true,"href":"https:\/\/prismtool.org\/es\/wp-json\/wp\/v2\/pages\/745"}],"wp:attachment":[{"href":"https:\/\/prismtool.org\/es\/wp-json\/wp\/v2\/media?parent=343"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}