{"id":390,"date":"2018-01-25T14:22:32","date_gmt":"2018-01-25T14:22:32","guid":{"rendered":"\/?p=390"},"modified":"2018-03-06T21:44:35","modified_gmt":"2018-03-06T21:44:35","slug":"energy-savings-quiz-much-know","status":"publish","type":"post","link":"https:\/\/powermepronto.com\/en\/energy-savings-quiz-much-know\/","title":{"rendered":"Energy Savings Quiz \u2013 How Much Do You Know?"},"content":{"rendered":"<p>All right, smarty pants.<\/p>\n<p>Think you know everything there is to know about saving energy?<\/p>\n<p>Maybe you do.<\/p>\n<p>\u2026And maybe you don\u2019t.<\/p>\n<p>Find out by reading the questions below and testing your knowledge. You never know what you could learn!<\/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_4' style='display:none'><div id='gf_4' class='gform_anchor' tabindex='-1'><\/div><form method='post' enctype='multipart\/form-data' target='gform_ajax_frame_4' id='gform_4'  action='\/en\/wp-json\/wp\/v2\/posts\/390#gf_4' data-formid='4' 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_4' class='gform_fields top_label form_sublabel_below description_below validation_below'><li id=\"field_4_6\" class=\"gfield gfield--type-honeypot gform_validation_container field_sublabel_below gfield--has-description field_description_below field_validation_below gfield_visibility_visible gquiz-instant-feedback \"  data-field-class=\"gquiz-instant-feedback\" ><label class='gfield_label gform-field-label' for='input_4_6'>Facebook<\/label><div class='ginput_container'><input name='input_6' id='input_4_6' type='text' value='' autocomplete='new-password'\/><\/div><div class='gfield_description' id='gfield_description_4_6'>This field is for validation purposes and should be left unchanged.<\/div><\/li><li id=\"field_4_1\" class=\"gfield gfield--type-quiz gfield--type-choice gfield--input-type-radio field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible gquiz-field  gquiz-instant-feedback \"  data-field-class=\"gquiz-field  gquiz-instant-feedback\" ><label class='gfield_label gform-field-label' >What percentage of your home\u2019s energy does your heating and cooling system use?<\/label><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_4_1'>\n\t\t\t<li class='gchoice gchoice_4_1_0'>\n\t\t\t\t<input name='input_1' type='radio' value='gquiz14b4ddf70'  id='choice_4_1_0'    \/>\n\t\t\t\t<label for='choice_4_1_0' id='label_4_1_0' class='gform-field-label gform-field-label--type-inline'>33%<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_1_1'>\n\t\t\t\t<input name='input_1' type='radio' value='gquiz1061b6fd0'  id='choice_4_1_1'    \/>\n\t\t\t\t<label for='choice_4_1_1' id='label_4_1_1' class='gform-field-label gform-field-label--type-inline'>50%<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_1_2'>\n\t\t\t\t<input name='input_1' type='radio' value='gquiz11b79e16c'  id='choice_4_1_2'    \/>\n\t\t\t\t<label for='choice_4_1_2' id='label_4_1_2' class='gform-field-label gform-field-label--type-inline'>66%<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_1_3'>\n\t\t\t\t<input name='input_1' type='radio' value='gquiz1b478ea71'  id='choice_4_1_3'    \/>\n\t\t\t\t<label for='choice_4_1_3' id='label_4_1_3' class='gform-field-label gform-field-label--type-inline'>100%<\/label>\n\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_4_2\" class=\"gfield gfield--type-quiz gfield--type-choice gfield--input-type-radio field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible gquiz-field  gquiz-instant-feedback \"  data-field-class=\"gquiz-field  gquiz-instant-feedback\" ><label class='gfield_label gform-field-label' >Which of these uses roughly half our nation\u2019s energy?<\/label><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_4_2'>\n\t\t\t<li class='gchoice gchoice_4_2_0'>\n\t\t\t\t<input name='input_2' type='radio' value='gquiz14b4ddf70'  id='choice_4_2_0'    \/>\n\t\t\t\t<label for='choice_4_2_0' id='label_4_2_0' class='gform-field-label gform-field-label--type-inline'>Cars and trucks<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_2_1'>\n\t\t\t\t<input name='input_2' type='radio' value='gquiz1061b6fd0'  id='choice_4_2_1'    \/>\n\t\t\t\t<label for='choice_4_2_1' id='label_4_2_1' class='gform-field-label gform-field-label--type-inline'>Commercial and industrial buildings<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_2_2'>\n\t\t\t\t<input name='input_2' type='radio' value='gquiz11b79e16c'  id='choice_4_2_2'    \/>\n\t\t\t\t<label for='choice_4_2_2' id='label_4_2_2' class='gform-field-label gform-field-label--type-inline'>Personal electronic devices as a whole<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_2_3'>\n\t\t\t\t<input name='input_2' type='radio' value='gquiz1b478ea71'  id='choice_4_2_3'    \/>\n\t\t\t\t<label for='choice_4_2_3' id='label_4_2_3' class='gform-field-label gform-field-label--type-inline'>Smartphones only<\/label>\n\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_4_3\" class=\"gfield gfield--type-quiz gfield--type-choice gfield--input-type-radio field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible gquiz-field  gquiz-instant-feedback \"  data-field-class=\"gquiz-field  gquiz-instant-feedback\" ><label class='gfield_label gform-field-label' >How has total energy consumption changed in America since the 1990s?<\/label><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_4_3'>\n\t\t\t<li class='gchoice gchoice_4_3_0'>\n\t\t\t\t<input name='input_3' type='radio' value='gquiz14b4ddf70'  id='choice_4_3_0'    \/>\n\t\t\t\t<label for='choice_4_3_0' id='label_4_3_0' class='gform-field-label gform-field-label--type-inline'>50% increase<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_3_1'>\n\t\t\t\t<input name='input_3' type='radio' value='gquiz1061b6fd0'  id='choice_4_3_1'    \/>\n\t\t\t\t<label for='choice_4_3_1' id='label_4_3_1' class='gform-field-label gform-field-label--type-inline'>25% increase<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_3_2'>\n\t\t\t\t<input name='input_3' type='radio' value='gquiz11b79e16c'  id='choice_4_3_2'    \/>\n\t\t\t\t<label for='choice_4_3_2' id='label_4_3_2' class='gform-field-label gform-field-label--type-inline'>Roughly the same<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_3_3'>\n\t\t\t\t<input name='input_3' type='radio' value='gquiz1b478ea71'  id='choice_4_3_3'    \/>\n\t\t\t\t<label for='choice_4_3_3' id='label_4_3_3' class='gform-field-label gform-field-label--type-inline'>25% less<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_3_4'>\n\t\t\t\t<input name='input_3' type='radio' value='gquiz37a2835e3'  id='choice_4_3_4'    \/>\n\t\t\t\t<label for='choice_4_3_4' id='label_4_3_4' class='gform-field-label gform-field-label--type-inline'>50% less<\/label>\n\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_4_4\" class=\"gfield gfield--type-quiz gfield--type-choice gfield--input-type-radio field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible gquiz-field  gquiz-instant-feedback \"  data-field-class=\"gquiz-field  gquiz-instant-feedback\" ><label class='gfield_label gform-field-label' >Which region has the strictest standards for car fuel efficiency?<\/label><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_4_4'>\n\t\t\t<li class='gchoice gchoice_4_4_0'>\n\t\t\t\t<input name='input_4' type='radio' value='gquiz14b4ddf70'  id='choice_4_4_0'    \/>\n\t\t\t\t<label for='choice_4_4_0' id='label_4_4_0' class='gform-field-label gform-field-label--type-inline'>European Union<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_4_1'>\n\t\t\t\t<input name='input_4' type='radio' value='gquiz1061b6fd0'  id='choice_4_4_1'    \/>\n\t\t\t\t<label for='choice_4_4_1' id='label_4_4_1' class='gform-field-label gform-field-label--type-inline'>United States<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_4_2'>\n\t\t\t\t<input name='input_4' type='radio' value='gquiz11b79e16c'  id='choice_4_4_2'    \/>\n\t\t\t\t<label for='choice_4_4_2' id='label_4_4_2' class='gform-field-label gform-field-label--type-inline'>Canada<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_4_3'>\n\t\t\t\t<input name='input_4' type='radio' value='gquiz1b478ea71'  id='choice_4_4_3'    \/>\n\t\t\t\t<label for='choice_4_4_3' id='label_4_4_3' class='gform-field-label gform-field-label--type-inline'>China<\/label>\n\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_4_5\" class=\"gfield gfield--type-quiz gfield--type-choice gfield--input-type-radio field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible gquiz-field  gquiz-instant-feedback \"  data-field-class=\"gquiz-field  gquiz-instant-feedback\" ><label class='gfield_label gform-field-label' >If you turn down your thermostat by 5-10 degrees at night and when you\u2019re not at home, how much do you cut your energy costs?<\/label><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_4_5'>\n\t\t\t<li class='gchoice gchoice_4_5_0'>\n\t\t\t\t<input name='input_5' type='radio' value='gquiz14b4ddf70'  id='choice_4_5_0'    \/>\n\t\t\t\t<label for='choice_4_5_0' id='label_4_5_0' class='gform-field-label gform-field-label--type-inline'>Less than 10%<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_5_1'>\n\t\t\t\t<input name='input_5' type='radio' value='gquiz1061b6fd0'  id='choice_4_5_1'    \/>\n\t\t\t\t<label for='choice_4_5_1' id='label_4_5_1' class='gform-field-label gform-field-label--type-inline'>10-20%<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_5_2'>\n\t\t\t\t<input name='input_5' type='radio' value='gquiz11b79e16c'  id='choice_4_5_2'    \/>\n\t\t\t\t<label for='choice_4_5_2' id='label_4_5_2' class='gform-field-label gform-field-label--type-inline'>21-30%<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_5_3'>\n\t\t\t\t<input name='input_5' type='radio' value='gquiz1b478ea71'  id='choice_4_5_3'    \/>\n\t\t\t\t<label for='choice_4_5_3' id='label_4_5_3' class='gform-field-label gform-field-label--type-inline'>More than 30%<\/label>\n\t\t\t<\/li><\/ul><\/div><\/li><\/ul><\/div>\n        <div class='gform-footer gform_footer top_label'> <input type='submit' id='gform_submit_button_4' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' value='Submit'  \/> <input type='hidden' name='gform_ajax' value='form_id=4&amp;title=&amp;description=&amp;tabindex=0&amp;theme=legacy&amp;styles=[]&amp;hash=cc37a9b3d696c3ab29233b3e78d33113' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_4' value='iframe' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_4' id='gform_theme_4' value='legacy' \/>\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='ra67xOrhlWWgsJMOqcU+T+Ce58qtyjup4tMAF6Y\/Lf+mIda5y1cEcebfyEwVCy1xpJJyRofM8b5JCNt7cSj5UNoz7TU3YzTmBCY+CSvL2+FPKlY=' \/>\n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_4' value='WyJbXSIsIjA5YzMzMDM1ZTU3OTIyYjI0N2U3YTNjYjM2ZTA2Y2Q5Il0=' \/>\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>\n\t\t                <iframe style='display:none;width:0px;height:0px;' src='about:blank' name='gform_ajax_frame_4' id='gform_ajax_frame_4' 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( 4, 'https:\/\/powermepronto.com\/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 *\/ jQuery(document).scrollTop(jQuery('#gform_wrapper_4').offset().top - mt); }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_4').val();gformInitSpinner( 4, 'https:\/\/powermepronto.com\/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).scrollTop(jQuery('#gf_4').offset().top - mt);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\n<p>Energy savings can get so routine. So hopefully, you enjoyed that fun test of your knowledge!<\/p>\n<p class=\"p1\">Call Pronto Power today at 844 621-2852 or <a href=\"mailto:service@powermepronto.com\"><span class=\"s1\">service@powermepronto.com<\/span><\/a> to check on the savings available to you.<span class=\"Apple-converted-space\">\u00a0 <\/span>Call Today!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>All right, smarty pants. Think you know everything there is to know about saving energy? Maybe you do. \u2026And maybe you don\u2019t.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_glsr_average":0,"_glsr_ranking":0,"_glsr_reviews":0,"footnotes":"","_links_to":"","_links_to_target":""},"categories":[1],"tags":[],"class_list":["post-390","post","type-post","status-publish","format-standard","hentry","category-blog"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Energy Savings Quiz \u2013 How Much Do You Know? - Pronto Power<\/title>\n<meta name=\"description\" content=\"Do you know these energy-savings facts, which can help you put a nice chuck of change in your pocket? Find out as you take this quiz!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/powermepronto.com\/es\/energy-savings-quiz-much-know\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Energy Savings Quiz \u2013 How Much Do You Know? - Pronto Power\" \/>\n<meta property=\"og:description\" content=\"Do you know these energy-savings facts, which can help you put a nice chuck of change in your pocket? Find out as you take this quiz!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/powermepronto.com\/es\/energy-savings-quiz-much-know\/\" \/>\n<meta property=\"og:site_name\" content=\"Pronto Power\" \/>\n<meta property=\"article:published_time\" content=\"2018-01-25T14:22:32+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-03-06T21:44:35+00:00\" \/>\n<meta name=\"author\" content=\"i5ww2017\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"i5ww2017\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/powermepronto.com\\\/es\\\/energy-savings-quiz-much-know\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/powermepronto.com\\\/es\\\/energy-savings-quiz-much-know\\\/\"},\"author\":{\"name\":\"i5ww2017\",\"@id\":\"https:\\\/\\\/powermepronto.com\\\/en\\\/#\\\/schema\\\/person\\\/af938b341f19a10e4d26c729097db4c4\"},\"headline\":\"Energy Savings Quiz \u2013 How Much Do You Know?\",\"datePublished\":\"2018-01-25T14:22:32+00:00\",\"dateModified\":\"2018-03-06T21:44:35+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/powermepronto.com\\\/es\\\/energy-savings-quiz-much-know\\\/\"},\"wordCount\":93,\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/powermepronto.com\\\/es\\\/energy-savings-quiz-much-know\\\/\",\"url\":\"https:\\\/\\\/powermepronto.com\\\/es\\\/energy-savings-quiz-much-know\\\/\",\"name\":\"Energy Savings Quiz \u2013 How Much Do You Know? - Pronto Power\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/powermepronto.com\\\/en\\\/#website\"},\"datePublished\":\"2018-01-25T14:22:32+00:00\",\"dateModified\":\"2018-03-06T21:44:35+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/powermepronto.com\\\/en\\\/#\\\/schema\\\/person\\\/af938b341f19a10e4d26c729097db4c4\"},\"description\":\"Do you know these energy-savings facts, which can help you put a nice chuck of change in your pocket? Find out as you take this quiz!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/powermepronto.com\\\/es\\\/energy-savings-quiz-much-know\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/powermepronto.com\\\/es\\\/energy-savings-quiz-much-know\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/powermepronto.com\\\/es\\\/energy-savings-quiz-much-know\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/powermepronto.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Energy Savings Quiz \u2013 How Much Do You Know?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/powermepronto.com\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/powermepronto.com\\\/en\\\/\",\"name\":\"Pronto Power\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/powermepronto.com\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/powermepronto.com\\\/en\\\/#\\\/schema\\\/person\\\/af938b341f19a10e4d26c729097db4c4\",\"name\":\"i5ww2017\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Energy Savings Quiz \u2013 How Much Do You Know? - Pronto Power","description":"Do you know these energy-savings facts, which can help you put a nice chuck of change in your pocket? Find out as you take this quiz!","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:\/\/powermepronto.com\/es\/energy-savings-quiz-much-know\/","og_locale":"en_US","og_type":"article","og_title":"Energy Savings Quiz \u2013 How Much Do You Know? - Pronto Power","og_description":"Do you know these energy-savings facts, which can help you put a nice chuck of change in your pocket? Find out as you take this quiz!","og_url":"https:\/\/powermepronto.com\/es\/energy-savings-quiz-much-know\/","og_site_name":"Pronto Power","article_published_time":"2018-01-25T14:22:32+00:00","article_modified_time":"2018-03-06T21:44:35+00:00","author":"i5ww2017","twitter_card":"summary_large_image","twitter_misc":{"Written by":"i5ww2017"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/powermepronto.com\/es\/energy-savings-quiz-much-know\/#article","isPartOf":{"@id":"https:\/\/powermepronto.com\/es\/energy-savings-quiz-much-know\/"},"author":{"name":"i5ww2017","@id":"https:\/\/powermepronto.com\/en\/#\/schema\/person\/af938b341f19a10e4d26c729097db4c4"},"headline":"Energy Savings Quiz \u2013 How Much Do You Know?","datePublished":"2018-01-25T14:22:32+00:00","dateModified":"2018-03-06T21:44:35+00:00","mainEntityOfPage":{"@id":"https:\/\/powermepronto.com\/es\/energy-savings-quiz-much-know\/"},"wordCount":93,"articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/powermepronto.com\/es\/energy-savings-quiz-much-know\/","url":"https:\/\/powermepronto.com\/es\/energy-savings-quiz-much-know\/","name":"Energy Savings Quiz \u2013 How Much Do You Know? - Pronto Power","isPartOf":{"@id":"https:\/\/powermepronto.com\/en\/#website"},"datePublished":"2018-01-25T14:22:32+00:00","dateModified":"2018-03-06T21:44:35+00:00","author":{"@id":"https:\/\/powermepronto.com\/en\/#\/schema\/person\/af938b341f19a10e4d26c729097db4c4"},"description":"Do you know these energy-savings facts, which can help you put a nice chuck of change in your pocket? Find out as you take this quiz!","breadcrumb":{"@id":"https:\/\/powermepronto.com\/es\/energy-savings-quiz-much-know\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/powermepronto.com\/es\/energy-savings-quiz-much-know\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/powermepronto.com\/es\/energy-savings-quiz-much-know\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/powermepronto.com\/en\/"},{"@type":"ListItem","position":2,"name":"Energy Savings Quiz \u2013 How Much Do You Know?"}]},{"@type":"WebSite","@id":"https:\/\/powermepronto.com\/en\/#website","url":"https:\/\/powermepronto.com\/en\/","name":"Pronto Power","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/powermepronto.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/powermepronto.com\/en\/#\/schema\/person\/af938b341f19a10e4d26c729097db4c4","name":"i5ww2017"}]}},"_links":{"self":[{"href":"https:\/\/powermepronto.com\/en\/wp-json\/wp\/v2\/posts\/390","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/powermepronto.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/powermepronto.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/powermepronto.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/powermepronto.com\/en\/wp-json\/wp\/v2\/comments?post=390"}],"version-history":[{"count":6,"href":"https:\/\/powermepronto.com\/en\/wp-json\/wp\/v2\/posts\/390\/revisions"}],"predecessor-version":[{"id":503,"href":"https:\/\/powermepronto.com\/en\/wp-json\/wp\/v2\/posts\/390\/revisions\/503"}],"wp:attachment":[{"href":"https:\/\/powermepronto.com\/en\/wp-json\/wp\/v2\/media?parent=390"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/powermepronto.com\/en\/wp-json\/wp\/v2\/categories?post=390"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/powermepronto.com\/en\/wp-json\/wp\/v2\/tags?post=390"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}