{"id":1512,"date":"2017-08-03T14:08:43","date_gmt":"2017-08-03T21:08:43","guid":{"rendered":"http:\/\/www.teamwavelength.com\/maintenance\/?page_id=1512"},"modified":"2018-01-18T14:21:29","modified_gmt":"2018-01-18T22:21:29","slug":"ems-quote","status":"publish","type":"page","link":"https:\/\/www.teamwavelength.com\/maintenance\/ems-quote\/","title":{"rendered":"EMS Quote"},"content":{"rendered":"<h2>Electronic Manufacturing Services Quote<\/h2>\n<p>Thank you for considering teaming with Wavelength Electronics. Please fill in answers to the following questions and prompts and submit an email containing the requested files so we can best serve your needs. Fields with an asterisk (<font color=\"#ff3300\">*<\/font>) are required.<\/p>\n<script type=\"text\/javascript\">\n\/* <![CDATA[ *\/\n\n\/\/----------------------------------------------------------\n\/\/------ JAVASCRIPT HOOK FUNCTIONS FOR GRAVITY FORMS -------\n\/\/----------------------------------------------------------\n\nif ( ! gform ) {\n\tdocument.addEventListener( 'gform_main_scripts_loaded', function() { gform.scriptsLoaded = true; } );\n\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', function() { gform.themeScriptsLoaded = true; } );\n\twindow.addEventListener( 'DOMContentLoaded', function() { gform.domLoaded = true; } );\n\n\tvar gform = {\n\t\tdomLoaded: false,\n\t\tscriptsLoaded: false,\n\t\tthemeScriptsLoaded: false,\n\t\tisFormEditor: () => typeof InitializeEditor === 'function',\n\n\t\t\/**\n\t\t * @deprecated 2.9 the use of initializeOnLoaded in the form editor context is deprecated.\n\t\t * @remove-in 4.0 this function will not check for gform.isFormEditor().\n\t\t *\/\n\t\tcallIfLoaded: function ( fn ) {\n\t\t\tif ( gform.domLoaded && gform.scriptsLoaded && ( gform.themeScriptsLoaded || gform.isFormEditor() ) ) {\n\t\t\t\tif ( gform.isFormEditor() ) {\n\t\t\t\t\tconsole.warn( 'The use of gform.initializeOnLoaded() is deprecated in the form editor context and will be removed in Gravity Forms 3.1.' );\n\t\t\t\t}\n\t\t\t\tfn();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\treturn false;\n\t\t},\n\n\t\t\/**\n\t\t * Call a function when all scripts are loaded\n\t\t *\n\t\t * @param function fn the callback function to call when all scripts are loaded\n\t\t *\n\t\t * @returns void\n\t\t *\/\n\t\tinitializeOnLoaded: function( fn ) {\n\t\t\tif ( ! gform.callIfLoaded( fn ) ) {\n\t\t\t\tdocument.addEventListener( 'gform_main_scripts_loaded', () => { gform.scriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', () => { gform.themeScriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\twindow.addEventListener( 'DOMContentLoaded', () => { gform.domLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t}\n\t\t},\n\n\t\thooks: { action: {}, filter: {} },\n\t\taddAction: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'action', action, callable, priority, tag );\n\t\t},\n\t\taddFilter: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'filter', action, callable, priority, tag );\n\t\t},\n\t\tdoAction: function( action ) {\n\t\t\tgform.doHook( 'action', action, arguments );\n\t\t},\n\t\tapplyFilters: function( action ) {\n\t\t\treturn gform.doHook( 'filter', action, arguments );\n\t\t},\n\t\tremoveAction: function( action, tag ) {\n\t\t\tgform.removeHook( 'action', action, tag );\n\t\t},\n\t\tremoveFilter: function( action, priority, tag ) {\n\t\t\tgform.removeHook( 'filter', action, priority, tag );\n\t\t},\n\t\taddHook: function( hookType, action, callable, priority, tag ) {\n\t\t\tif ( undefined == gform.hooks[hookType][action] ) {\n\t\t\t\tgform.hooks[hookType][action] = [];\n\t\t\t}\n\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\tif ( undefined == tag ) {\n\t\t\t\ttag = action + '_' + hooks.length;\n\t\t\t}\n\t\t\tif( priority == undefined ){\n\t\t\t\tpriority = 10;\n\t\t\t}\n\n\t\t\tgform.hooks[hookType][action].push( { tag:tag, callable:callable, priority:priority } );\n\t\t},\n\t\tdoHook: function( hookType, action, args ) {\n\n\t\t\t\/\/ splice args from object into array and remove first index which is the hook name\n\t\t\targs = Array.prototype.slice.call(args, 1);\n\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action], hook;\n\t\t\t\t\/\/sort by priority\n\t\t\t\thooks.sort(function(a,b){return a[\"priority\"]-b[\"priority\"]});\n\n\t\t\t\thooks.forEach( function( hookItem ) {\n\t\t\t\t\thook = hookItem.callable;\n\n\t\t\t\t\tif(typeof hook != 'function')\n\t\t\t\t\t\thook = window[hook];\n\t\t\t\t\tif ( 'action' == hookType ) {\n\t\t\t\t\t\thook.apply(null, args);\n\t\t\t\t\t} else {\n\t\t\t\t\t\targs[0] = hook.apply(null, args);\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t}\n\t\t\tif ( 'filter'==hookType ) {\n\t\t\t\treturn args[0];\n\t\t\t}\n\t\t},\n\t\tremoveHook: function( hookType, action, priority, tag ) {\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\t\thooks = hooks.filter( function(hook, index, arr) {\n\t\t\t\t\tvar removeHook = (undefined==tag||tag==hook.tag) && (undefined==priority||priority==hook.priority);\n\t\t\t\t\treturn !removeHook;\n\t\t\t\t} );\n\t\t\t\tgform.hooks[hookType][action] = hooks;\n\t\t\t}\n\t\t}\n\t};\n}\n\n\/* ]]> *\/\n<\/script>\n\n                <div class='gf_browser_gecko gform_wrapper gform_legacy_markup_wrapper gform-theme--no-framework' data-form-theme='legacy' data-form-index='0' id='gform_wrapper_3' style='display:none'><div id='gf_3' class='gform_anchor' tabindex='-1'><\/div><form method='post' enctype='multipart\/form-data' target='gform_ajax_frame_3' id='gform_3'  action='\/maintenance\/wp-json\/wp\/v2\/pages\/1512#gf_3' data-formid='3' novalidate> \r\n <input type='hidden' class='gforms-pum' value='{\"closepopup\":false,\"closedelay\":0,\"openpopup\":false,\"openpopup_id\":0}' \/>\n                        <div class='gform-body gform_body'><ul id='gform_fields_3' class='gform_fields top_label form_sublabel_below description_below validation_below'><li id=\"field_3_20\" class=\"gfield gfield--type-honeypot gform_validation_container field_sublabel_below gfield--has-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_3_20'>Phone<\/label><div class='ginput_container'><input name='input_20' id='input_3_20' type='text' value='' autocomplete='new-password'\/><\/div><div class='gfield_description' id='gfield_description_3_20'>This field is for validation purposes and should be left unchanged.<\/div><\/li><li id=\"field_3_1\" class=\"gfield gfield--type-text gf_left_half 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_3_1'>Name<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_1' id='input_3_1' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/li><li id=\"field_3_2\" class=\"gfield gfield--type-text gf_right_half 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_3_2'>Company<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_2' id='input_3_2' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/li><li id=\"field_3_3\" class=\"gfield gfield--type-email gf_left_half 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_3_3'>Email<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_email'>\n                            <input name='input_3' id='input_3_3' type='email' value='' class='large'    aria-required=\"true\" aria-invalid=\"false\"  \/>\n                        <\/div><\/li><li id=\"field_3_4\" class=\"gfield gfield--type-text gf_right_half 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_3_4'>Phone<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_4' id='input_3_4' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/li><li id=\"field_3_5\" class=\"gfield gfield--type-text gf_left_half 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_3_5'>Project Name<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_5' id='input_3_5' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/li><li id=\"field_3_6\" class=\"gfield gfield--type-text gf_right_half field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_3_6'>Raw Board Revision<\/label><div class='ginput_container ginput_container_text'><input name='input_6' id='input_3_6' type='text' value='' class='large'      aria-invalid=\"false\"   \/><\/div><\/li><li id=\"field_3_13\" class=\"gfield gfield--type-html gf_left_half gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><\/li><li id=\"field_3_7\" class=\"gfield gfield--type-text gf_right_half field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_3_7'>Bill of Materials Revision<\/label><div class='ginput_container ginput_container_text'><input name='input_7' id='input_3_7' type='text' value='' class='large'      aria-invalid=\"false\"   \/><\/div><\/li><li id=\"field_3_8\" class=\"gfield gfield--type-text 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_3_8'>How many pieces of this assembly would you like us to quote?<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_3_8' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/li><li id=\"field_3_9\" class=\"gfield gfield--type-text field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_3_9'>When would you ideally like the assemblies delivered?<\/label><div class='ginput_container ginput_container_text'><input name='input_9' id='input_3_9' type='text' value='' class='large'      aria-invalid=\"false\"   \/><\/div><\/li><li id=\"field_3_10\" class=\"gfield gfield--type-checkbox gfield--type-choice field_sublabel_below gfield--has-description field_description_above field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label gfield_label_before_complex' >What services would you like us to provide?<\/label><div class='gfield_description' id='gfield_description_3_10'>Here are some suggestions. Checking the Other box allows you to add more comprehensive notes or refer us to Assembly instructions.<\/div><div class='ginput_container ginput_container_checkbox'><ul class='gfield_checkbox' id='input_3_10'><li class='gchoice gchoice_3_10_1'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.1' type='checkbox'  value='Buy some or all parts'  id='choice_3_10_1'   aria-describedby=\"gfield_description_3_10\"\/>\n\t\t\t\t\t\t\t\t<label for='choice_3_10_1' id='label_3_10_1' class='gform-field-label gform-field-label--type-inline'>Buy some or all parts<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_3_10_2'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.2' type='checkbox'  value='Solder on Surface Mount parts (SMT)'  id='choice_3_10_2'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_10_2' id='label_3_10_2' class='gform-field-label gform-field-label--type-inline'>Solder on Surface Mount parts (SMT)<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_3_10_3'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.3' type='checkbox'  value='Solder on plate-through parts'  id='choice_3_10_3'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_10_3' id='label_3_10_3' class='gform-field-label gform-field-label--type-inline'>Solder on plate-through parts<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_3_10_4'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.4' type='checkbox'  value='Attach wire or wiring harnesses'  id='choice_3_10_4'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_10_4' id='label_3_10_4' class='gform-field-label gform-field-label--type-inline'>Attach wire or wiring harnesses<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_3_10_5'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.5' type='checkbox'  value='Install in chassis'  id='choice_3_10_5'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_10_5' id='label_3_10_5' class='gform-field-label gform-field-label--type-inline'>Install in chassis<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_3_10_6'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.6' type='checkbox'  value='Program microprocessor(s)'  id='choice_3_10_6'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_10_6' id='label_3_10_6' class='gform-field-label gform-field-label--type-inline'>Program microprocessor(s)<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_3_10_7'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.7' type='checkbox'  value='Test'  id='choice_3_10_7'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_10_7' id='label_3_10_7' class='gform-field-label gform-field-label--type-inline'>Test<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_3_10_8'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.8' type='checkbox'  value='Cover with conformal coating or potting compound'  id='choice_3_10_8'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_10_8' id='label_3_10_8' class='gform-field-label gform-field-label--type-inline'>Cover with conformal coating or potting compound<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_3_10_9'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.9' type='checkbox'  value='Special handling, such as, &quot;Do not contaminate boards as they will be used in a clean room or inside a laser assembly.&quot;'  id='choice_3_10_9'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_10_9' id='label_3_10_9' class='gform-field-label gform-field-label--type-inline'>Special handling, such as, \"Do not contaminate boards as they will be used in a clean room or inside a laser assembly.\"<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_3_10_11'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.11' type='checkbox'  value='Other'  id='choice_3_10_11'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_10_11' id='label_3_10_11' class='gform-field-label gform-field-label--type-inline'>Other<\/label>\n\t\t\t\t\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_3_11\" class=\"gfield gfield--type-textarea field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_3_11'>Other<\/label><div class='ginput_container ginput_container_textarea'><textarea name='input_11' id='input_3_11' class='textarea medium'      aria-invalid=\"false\"   rows='10' cols='50'><\/textarea><\/div><\/li><li id=\"field_3_12\" class=\"gfield gfield--type-html gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  >In addition to the information provided above, please  provide us with the files we need to complete your quote. Please use the fields below to upload the requested files:\n<\/li><li id=\"field_3_14\" class=\"gfield gfield--type-fileupload field_sublabel_below gfield--has-description field_description_above field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_3_14'>Gerber files<\/label><div class='gfield_description' id='gfield_description_3_14'>(If we are not testing the boards, we do NOT need schematics.)<\/div><div class='ginput_container ginput_container_fileupload'><input type='hidden' name='MAX_FILE_SIZE' value='2097152' \/><input name='input_14' id='input_3_14' type='file' class='medium' aria-describedby=\"gfield_upload_rules_3_14 gfield_description_3_14\" onchange='javascript:gformValidateFileSize( this, 2097152 );'  \/><span class='gfield_description gform_fileupload_rules' id='gfield_upload_rules_3_14'>Accepted file types: zip, 7z, gbs, gto, gbo, drl, Max. file size: 2 MB.<\/span><div class='gfield_description validation_message gfield_validation_message validation_message--hidden-on-empty' id='live_validation_message_3_14'><\/div> <\/div><\/li><li id=\"field_3_15\" class=\"gfield gfield--type-fileupload field_sublabel_below gfield--has-description field_description_above field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_3_15'>Bill of Materials Spreadsheet<\/label><div class='gfield_description' id='gfield_description_3_15'>This should include quantities per assembly, manufacturer part numbers, part descriptions and reference designators.<\/div><div class='ginput_container ginput_container_fileupload'><input type='hidden' name='MAX_FILE_SIZE' value='2097152' \/><input name='input_15' id='input_3_15' type='file' class='medium' aria-describedby=\"gfield_upload_rules_3_15 gfield_description_3_15\" onchange='javascript:gformValidateFileSize( this, 2097152 );'  \/><span class='gfield_description gform_fileupload_rules' id='gfield_upload_rules_3_15'>Accepted file types: csv, xls, xlsx, Max. file size: 2 MB.<\/span><div class='gfield_description validation_message gfield_validation_message validation_message--hidden-on-empty' id='live_validation_message_3_15'><\/div> <\/div><\/li><li id=\"field_3_16\" class=\"gfield gfield--type-html gfield_html gfield_html_formatted field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  >Expect a phone call or email within the next business day. <\/li><li id=\"field_3_18\" class=\"gfield gfield--type-checkbox gfield--type-choice 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 gfield_label_before_complex' >Consent<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_checkbox'><ul class='gfield_checkbox' id='input_3_18'><li class='gchoice gchoice_3_18_1'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_18.1' type='checkbox'  value='By submitting this form I agree with the storage and handling of my data as outlined in the &lt;a href=&quot;http:\/\/www.teamwavelength.com\/maintenance\/privacy-policy\/&quot;&gt;Privacy Policy&lt;\/a&gt;.'  id='choice_3_18_1'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_3_18_1' id='label_3_18_1' class='gform-field-label gform-field-label--type-inline'>By submitting this form I agree with the storage and handling of my data as outlined in the <a href=\"http:\/\/www.teamwavelength.com\/maintenance\/privacy-policy\/\">Privacy Policy<\/a>.<\/label>\n\t\t\t\t\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_3_19\" class=\"gfield gfield--type-captcha gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_3_19'>CAPTCHA<\/label><div id='input_3_19' class='ginput_container ginput_recaptcha' data-sitekey='6LcKXLgUAAAAAIUaU2YHQqVICZ0TcG51cl9sevCM'  data-theme='light' data-tabindex='0'  data-badge=''><\/div><\/li><\/ul><\/div>\n        <div class='gform-footer gform_footer top_label'> <input type='submit' id='gform_submit_button_3' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' value='Submit'  \/> <input type='hidden' name='gform_ajax' value='form_id=3&amp;title=&amp;description=&amp;tabindex=0&amp;theme=legacy&amp;styles=[]&amp;hash=3474a0ea3d2a3d01913a74d051bd9e99' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_3' value='iframe' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_3' id='gform_theme_3' value='legacy' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_3' id='gform_style_settings_3' value='[]' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_3' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='3' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_currency' data-currency='USD' value='wQ2AIJCSko9RjykvogFVGYonIFgt4kPkE9riXEnTJRWt9J\/PLV7XhqRDh71ngLYF2nGoQCBNDxYjX\/Gg2uM2M1+nSzzLHljbJbFwz+UA\/QP\/uhg=' \/>\n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_3' value='WyJbXSIsImEwMjVmMDVjYzkxMjVlNjUwM2MyMTIyOTNlZTJjMjBkIl0=' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_3' id='gform_target_page_number_3' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_3' id='gform_source_page_number_3' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n                        <\/form>\n                        <\/div>\n\t\t                <iframe style='display:none;width:0px;height:0px;' src='about:blank' name='gform_ajax_frame_3' id='gform_ajax_frame_3' title='This iframe contains the logic required to handle Ajax powered Gravity Forms.'><\/iframe>\n\t\t                <script type=\"text\/javascript\">\n\/* <![CDATA[ *\/\n gform.initializeOnLoaded( function() {gformInitSpinner( 3, 'https:\/\/www.teamwavelength.com\/maintenance\/wp-content\/themes\/jupiter-child\/images\/ajax-loader.gif', true );jQuery('#gform_ajax_frame_3').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_3');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_3').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_3').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_3').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_3').removeClass('gform_validation_error');}setTimeout( function() { \/* delay the scroll by 50 milliseconds to fix a bug in chrome *\/ jQuery(document).scrollTop(jQuery('#gform_wrapper_3').offset().top - mt); }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_3').val();gformInitSpinner( 3, 'https:\/\/www.teamwavelength.com\/maintenance\/wp-content\/themes\/jupiter-child\/images\/ajax-loader.gif', true );jQuery(document).trigger('gform_page_loaded', [3, current_page]);window['gf_submitting_3'] = 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_3').replaceWith(confirmation_content);jQuery(document).scrollTop(jQuery('#gf_3').offset().top - mt);jQuery(document).trigger('gform_confirmation_loaded', [3]);window['gf_submitting_3'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_3').text());}else{jQuery('#gform_3').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"3\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_3\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_3\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_3\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 3, 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\n","protected":false},"excerpt":{"rendered":"<p>Electronic Manufacturing Services Quote Thank you for considering teaming with Wavelength Electronics. Please fill in answers to the following questions and prompts and submit an email containing the requested files so we can best serve your needs. Fields with an asterisk (*) are required.<\/p>\n","protected":false},"author":8,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-1512","page","type-page","status-publish","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/www.teamwavelength.com\/maintenance\/wp-json\/wp\/v2\/pages\/1512","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.teamwavelength.com\/maintenance\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.teamwavelength.com\/maintenance\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.teamwavelength.com\/maintenance\/wp-json\/wp\/v2\/users\/8"}],"replies":[{"embeddable":true,"href":"https:\/\/www.teamwavelength.com\/maintenance\/wp-json\/wp\/v2\/comments?post=1512"}],"version-history":[{"count":5,"href":"https:\/\/www.teamwavelength.com\/maintenance\/wp-json\/wp\/v2\/pages\/1512\/revisions"}],"predecessor-version":[{"id":5286,"href":"https:\/\/www.teamwavelength.com\/maintenance\/wp-json\/wp\/v2\/pages\/1512\/revisions\/5286"}],"wp:attachment":[{"href":"https:\/\/www.teamwavelength.com\/maintenance\/wp-json\/wp\/v2\/media?parent=1512"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}