{"id":8167,"date":"2024-11-25T06:21:48","date_gmt":"2024-11-25T14:21:48","guid":{"rendered":"https:\/\/www.qualityrvresorts.com\/?post_type=listings&#038;p=8167"},"modified":"2024-11-25T09:13:45","modified_gmt":"2024-11-25T17:13:45","slug":"contact","status":"publish","type":"listings","link":"https:\/\/www.qualityrvresorts.com\/destinations\/houston\/highway-6-rv-resort\/contact\/","title":{"rendered":"Contact"},"content":{"rendered":"<script type=\"text\/javascript\">\n    import Rellax from 'rellax';\n\n    \/\/\/\/ Carousel Hero\n    jQuery(document).ready(function($) {\n        $('.hero-slider').slick({\n            accessibility: true,\n            infinite: false,\n            autoplay: true,\n            autoplaySpeed: 4000,\n            fade: false,\n            speed: 1000,\n            slidesToShow: 1,\n            slidesToScroll: 1,\n            dots: false,\n            arrows: false,\n            nextArrow: '<div class=\"next\"><i class=\"fal fa-chevron-right\"><\/i><\/div>',\n            prevArrow: '<div class=\"prev\"><i class=\"fal fa-chevron-left\"><\/i><\/div>',\n            responsive: [{\n                breakpoint: 1023,\n                settings: {\n                    dots: false,\n                    arrows: false,\n                },\n            }, ],\n        });\n\n\n    });\n<\/script>\n\n<section id=\"block_bee377e1cf07ebba9c85885be570aab5\" class=\"section-brm--hero relative remove_hero_nav preview-none z-40\">\n        <div>\n        <div class=\"hero-slider relative z-40\">\n                                                                                        <div class=\"hero-item bg-cover lg:bg-fixed  bg-gray  text-white bg-center\"\n                        style=\"background-image: url(https:\/\/www.qualityrvresorts.com\/app\/uploads\/2024\/11\/19-web-or-mls-highway-6-17-e1734966180566.jpg);\">\n                        <div class=\"container\">\n                            <div\n                                class=\"hero_content mx-auto block sm:w-full lg:w-full  p-6 lg:p-12\">\n                                                                \n                            <\/div>\n                        <\/div>\n                    <\/div>\n                                    <\/div>\n    <\/div>\n<\/section>\n\n\n<script>\n    function convertFormat(userDate) {\n        var year = userDate.substring(0, 4);\n        var month = userDate.substring(5, 7);\n        var day = userDate.substring(8, 10);\n        var newDate = month + '\/' + day + '\/' + year;\n        return newDate;\n    }\n\n    jQuery(document).ready(function ($) {\n        \/\/ Attach the datepicker to the input\n        $(\"#check_in, #check_out\").datepicker({\n            showOn: \"focus\", \/\/ Allows the input field and the icon to trigger the datepicker\n            dateFormat: \"yy-mm-dd\", \/\/ The format of the date\n        });\n\n\n        const forms = document.querySelectorAll('.js-book-resorts-new');\n\n        \/\/ Handle form submission\n        if (forms) {\n            forms.forEach((form) => {\n                form.addEventListener('submit', (e) => {\n                    e.preventDefault();\n\n                    const resort = e.target['resort'].value;\n                    const checkIn = e.target['check_in'].value;\n                    const checkOut = e.target['check_out'].value;\n                    const guests = e.target['guests'].value;\n\n                    console.log(resort, checkIn, checkOut, guests);\n\n\n                    \/\/Maps ID to Resort Name\n                    var resortMap = {\n                        33: \"allstar-rv-resort\",\n                        2330: \"admiralty-rv-resort\",\n                        \/\/Not provided yet\n                        67: \"bayou-oaks-rv-park\",\n                        32: \"brazoria-lakes-rv-resort\",\n                        \/\/Not provided yet\n                        66: \"brazoria-rv-park\",\n                        \/\/Not provided yet\n                        2782: \"qrv-conroe\",\n                        31: \"eastlake-rv-resort\",\n                        30: \"fallbrook-rv-resort\",\n                        29: \"greenlake-rv-resort\",\n                        28: \"highway-6-rv-resort\",\n                        27: \"lakeview-rv-resort\",\n                        26: \"mont-belvieu-rv-resort\",\n                        24: \"northlake-rv-resort\",\n                        25: \"southlake-rv-resort\",\n                        2222: \"qrv-victoria\",\n                        23: \"westlake-rv-resort\",\n                    };\n\n                    var resortName = resortMap[resort];\n\n                    console.log(\"Resort Name: \", resortName);\n\n                    \/\/Case when nothing is selected\n                    if (\n                        checkIn === '' &&\n                        checkOut === '' &&\n                        guests === ''\n                    ) {\n                        alert(\n                        'Please select a resort, check-in date, check-out date and number of guests'\n                        );\n                        \n                        return;\n                    }\n\n                    \/\/Campspot Booking - special cases\n                    \/\/Bayou Oaks RV Park\n                    if (resort == 67) {\n                        if (checkIn === '' && checkOut === '') {\n                        window.open(\n                            'https:\/\/www.campspot.com\/book\/bayou-oaks-rv-park'\n                        );\n                        } else {\n                        window.open(\n                            `https:\/\/www.campspot.com\/book\/bayou-oaks-rv-park\/search\/${checkIn}\/${checkOut}\/guests0,${guests},0`\n                        );\n                        }\n                    }\n\n                    \/\/Brazoria RV Park\n                    else if (resort == 66) {\n                        if (checkIn === '' && checkOut === '') {\n                        window.open(\n                            'https:\/\/www.campspot.com\/book\/brazoria-rv-park'\n                        );\n                        } else {\n                        window.open(\n                            `https:\/\/www.campspot.com\/book\/brazoria-rv-park\/search\/${checkIn}\/${checkOut}\/guests0,${guests},0`\n                        );\n                        }\n                    }\n\n                    \/\/Conroe RV Park\n                    else if (resort == 2782) {\n                        if (checkIn === '' && checkOut === '') {\n                        window.open(\n                            'https:\/\/www.campspot.com\/book\/qrv-conroe'\n                        );\n                        } else {\n                        window.open(\n                            `https:\/\/www.campspot.com\/book\/qrv-conroe\/search\/${checkIn}\/${checkOut}\/guests0,${guests},0`\n                        );\n                        }\n                    }\n\n                    \/\/New booking engine - default if none of the above are selected\n                    else {\n                        if (checkIn === '' && checkOut === '') {\n\n                        window.open(\n                            `https:\/\/book.qualityrvresorts.com\/resorts\/${resortName}`\n                        );\n                        } else {\n                        window.open(\n                            `https:\/\/book.qualityrvresorts.com\/resorts\/${resortName}?dates=${checkIn},${checkOut}`\n                        );\n                        }\n                    }\n                });\n            });\n        }\n    });\n<\/script>\n\n<style>\n    #block_bee377e1cf07ebba9c85885be570aab5 {\n        --hero-height-desk: 400px;\n        --hero-height-mob: 260px;\n        --hero-clr: ;\n    }\n\n    #block_bee377e1cf07ebba9c85885be570aab5 .community-logo {\n        width: 400px;\n    }\n<\/style>\n\n\n<section id=\"block_c3e3b892e576875bb306cc4fe7a867b6\" class=\"preview-none section-col-spawn  bg-fixed\">\n    <div>\n        <div\n            class=\"container justify-center  column-container inner-container flex flex-row flex-wrap  relative \">\n            <!-- Column one  -->\n                                                 \n                                                            <div\n                        class=\"   columns column-1   background-color-block_c3e3b892e576875bb306cc4fe7a867b6 \">\n                                                    <div class=\"inner w-full h-full bg-cover    bg-white      \"\n                                style=\"\n                                                                background-image: url()\n                                                                \">\n                                                                                                            <p style=\"text-align: center;\"><small>Highway 6 RV Resort\u202fContact <\/small><\/p>\n<h1 style=\"text-align: center;\">Your Stay, Your Way<\/h1>\n<p style=\"text-align: center;\">We can\u2019t wait to hear from you! Contact us today about our RV sites, park models, and tiny home spaces in West Houston, Texas. <\/p>\n<p>&nbsp;<\/p>\n<script>\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<\/script>\n\n                <div class='gf_browser_unknown gform_wrapper gravity-theme gform-theme--no-framework' data-form-theme='gravity-theme' data-form-index='0' id='gform_wrapper_12' ><div id='gf_12' class='gform_anchor' tabindex='-1'><\/div>\n                        <div class='gform_heading'>\n                            <p class='gform_description'><\/p>\n                        <\/div><form method='post' enctype='multipart\/form-data'  id='gform_12'  action='\/wp-json\/wp\/v2\/listings\/8167#gf_12' data-formid='12' 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'><div id='gform_fields_12' class='gform_fields top_label form_sublabel_below description_below validation_below'><div id=\"field_12_11\" 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_12_11'>Email<\/label><div class='ginput_container'><input name='input_11' id='input_12_11' type='text' value='' autocomplete='new-password'\/><\/div><div class='gfield_description' id='gfield_description_12_11'>This field is for validation purposes and should be left unchanged.<\/div><\/div><div id=\"field_12_7\" class=\"gfield gfield--type-select gfield--input-type-select 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_12_7'>Property<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_7' id='input_12_7' class='large gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='' selected='selected' class='gf_placeholder'>Please Select<\/option><option value='Admiralty RV Resort' >Admiralty RV Resort<\/option><option value='AllStar RV Resort' >AllStar RV Resort<\/option><option value='Bayou Oaks RV Park' >Bayou Oaks RV Park<\/option><option value='Brazoria RV Park' >Brazoria RV Park<\/option><option value='Brazoria Lakes RV Resort' >Brazoria Lakes RV Resort<\/option><option value='Eastlake RV Resort' >Eastlake RV Resort<\/option><option value='Fallbrook RV Resort' >Fallbrook RV Resort<\/option><option value='Greenlake RV Resort' >Greenlake RV Resort<\/option><option value='Highway 6 RV Resort' >Highway 6 RV Resort<\/option><option value='Lakeview RV Resort' >Lakeview RV Resort<\/option><option value='Mont Belvieu RV Resort' >Mont Belvieu RV Resort<\/option><option value='Northlake RV Resort' >Northlake RV Resort<\/option><option value='QRV Conroe' >QRV Conroe<\/option><option value='QRV Victoria' >QRV Victoria<\/option><option value='Southlake RV Resort' >Southlake RV Resort<\/option><option value='Westlake RV Resort' >Westlake RV Resort<\/option><option value='Other' >Other<\/option><\/select><\/div><\/div><div id=\"field_12_1\" class=\"gfield gfield--type-text gfield--input-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_12_1'>First Name<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_1' id='input_12_1' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_12_3\" class=\"gfield gfield--type-text gfield--input-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_12_3'>Last Name<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_3' id='input_12_3' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_12_8\" class=\"gfield gfield--type-phone gfield--input-type-phone 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_12_8'>Phone<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_phone'><input name='input_8' id='input_12_8' type='tel' value='' class='large'   aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_12_4\" class=\"gfield gfield--type-email gfield--input-type-email gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible gpev-field\"  data-field-class=\"gpev-field\" ><label class='gfield_label gform-field-label' for='input_12_4'>Email Address<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_email'>\n                            <input name='input_4' id='input_12_4' type='email' value='' class='large'    aria-required=\"true\" aria-invalid=\"false\"  \/>\n                        <\/div><\/div><div id=\"field_12_5\" class=\"gfield gfield--type-textarea gfield--input-type-textarea 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_12_5'>Message<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_textarea'><textarea name='input_5' id='input_12_5' class='textarea large'     aria-required=\"true\" aria-invalid=\"false\"   rows='10' cols='50'><\/textarea><\/div><\/div><div id=\"field_12_10\" class=\"gfield gfield--type-hidden gfield--input-type-hidden gfield--width-full gform_hidden field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><div class='ginput_container ginput_container_text'><input name='input_10' id='input_12_10' type='hidden' class='gform_hidden'  aria-invalid=\"false\" value='' \/><\/div><\/div><div id=\"field_12_6\" class=\"gfield gfield--type-captcha gfield--input-type-captcha field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_12_6'>CAPTCHA<\/label><div id='input_12_6' class='ginput_container ginput_recaptcha' data-sitekey='6Ld5y4kUAAAAAJndgoZwsjf-uQOMFtFivsQ3Q5eA'  data-theme='light' data-tabindex='0'  data-badge=''><\/div><\/div><\/div><\/div>\n        <div class='gform-footer gform_footer top_label'> <input type='submit' id='gform_submit_button_12' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' value='Submit'  \/> \n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_12' value='postback' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_12' id='gform_theme_12' value='gravity-theme' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_12' id='gform_style_settings_12' value='[]' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_12' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='12' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_currency' data-currency='USD' value='y0AaV8OqNqSDb6o8FZdAv5sbuDzGpcGY9YHowkGnFvAoC2AFGzYpHut4v0SDH+lNH58CdejxY+PhmDL0RWpRc2gH+wSclqKORoAXndXFxkG\/+lA=' \/>\n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_12' value='WyJ7XCI3XCI6W1wiNzdiMzRhZTQzY2QwZTE2ZWVmMzU4NTc1MGRkMzMyZjVcIixcIjFkMGVlZmQwYWJiMDNmNzI4NmMwYjQyYzk3ZDdhZTU0XCIsXCJkNzliZTNlMzMwZDI1MTNiNDgyNGY1ZjM1M2MzOGQ5ZVwiLFwiYmVlMmQ0N2FmNmNhMjE2YmFhODIxN2UxZDZlZjk0MGNcIixcIjdjMmI4ZDkzYmI3YmVjYjE1Y2I4MTYzZTE3ZDk1MTBhXCIsXCI4YjVhNzkwYzM1MDQ1NzU5N2JlZjEyMzRmMmE1OWJjY1wiLFwiZTlhMGU0NTBjMzU1NTA2MDE4NzI5YzU1NTBjZjQyOWNcIixcIjAxYmJhOTY1NDFmYjA3ZjM3ODUwMmJlYTZiNDU0MzdjXCIsXCJiMmVlYWZlOGQ0ODlhM2FlNjhjNzdlNWUxNzAxMjBmYlwiLFwiOThmZjhiOTNjY2YwMTJlZTRhM2Q3YTJkN2M2ODZlMjNcIixcIjBmYmUyZjVhMzkxZTE0MjhjMTdlMDRkYmRlOTRlYzI1XCIsXCJjMWQwNDhjYmM1YmZlNmJmMDUyYzViMGZjNjJkNWE2YlwiLFwiYmM5ZThlZDc3ZWJjZjQ0MzZlMjkxYzBiNDVjZDhkOWFcIixcIjNiODFkNWJmNDdmNDgxM2MxZWU1NWVmZjA5ZjY4NTJjXCIsXCI4ZDg3N2VhNDk2NjEyMDVhMWQ1OWJhOWY2Y2UyNDU4NlwiLFwiYjg5MzU4ODc2ZDNjOGE4ZjBjZjIzMmZlMDU0NGNjMGVcIixcImFkZjgxYjAwM2I1Y2E0NjE2NzkyMTM2ZDQ5ZTdhZTE4XCJdfSIsIjQ5YWQ3YTRhZjRhMzViMGMzMzViNDgwNDg4ZjdlYzUzIl0=' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_12' id='gform_target_page_number_12' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_12' id='gform_source_page_number_12' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n                        <p style=\"display: none !important;\" class=\"akismet-fields-container\" data-prefix=\"ak_\"><label>&#916;<textarea name=\"ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"><\/textarea><\/label><input type=\"hidden\" id=\"ak_js_1\" name=\"ak_js\" value=\"80\"\/><script>\ndocument.getElementById( \"ak_js_1\" ).setAttribute( \"value\", ( new Date() ).getTime() );\n<\/script>\n<\/p><\/form>\n                        <\/div><script>\ngform.initializeOnLoaded( function() {gformInitSpinner( 12, 'https:\/\/www.qualityrvresorts.com\/app\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery('#gform_ajax_frame_12').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_12');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_12').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){jQuery('#gform_wrapper_12').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_12').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_12').removeClass('gform_validation_error');}setTimeout( function() { \/* delay the scroll by 50 milliseconds to fix a bug in chrome *\/ jQuery(document).scrollTop(jQuery('#gform_wrapper_12').offset().top - mt); }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_12').val();gformInitSpinner( 12, 'https:\/\/www.qualityrvresorts.com\/app\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery(document).trigger('gform_page_loaded', [12, current_page]);window['gf_submitting_12'] = 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_12').replaceWith(confirmation_content);jQuery(document).scrollTop(jQuery('#gf_12').offset().top - mt);jQuery(document).trigger('gform_confirmation_loaded', [12]);window['gf_submitting_12'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_12').text());}else{jQuery('#gform_12').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"12\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_12\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_12\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_12\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 12, 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<\/script>\n\n\n                                                                                                <\/div>\n                        \n                        <style type=\"text\/css\">                    \n                            #block_c3e3b892e576875bb306cc4fe7a867b6 .column-1 .inner {\n                                padding-top: 0px;\n                                padding-bottom: 0px;\n                            }\n\n                            #block_c3e3b892e576875bb306cc4fe7a867b6 .column-1 {\n                                margin-top: 0px;\n                                margin-bottom: 0px;\n                            }\n\n                            @media (min-width: 1024px) {\n                                #block_c3e3b892e576875bb306cc4fe7a867b6 .column-1 {\n                                width: 70%;\n                                }\n\n                                #block_c3e3b892e576875bb306cc4fe7a867b6 .column-1 {\n                                    position: relative;\n                                    margin-top: 0px;\n                                    margin-bottom: 0px;\n                                    left: 0px;\n                                }\n\n                                #block_c3e3b892e576875bb306cc4fe7a867b6 .column-1 .bg-image,\n\n                                #block_c3e3b892e576875bb306cc4fe7a867b6 .column-1 .slick-list,\n\n                                #block_c3e3b892e576875bb306cc4fe7a867b6 .column-1 .slick-list .slick-track {\n                                    min-height: 400px;\n                                }\n\n                                #block_c3e3b892e576875bb306cc4fe7a867b6 .column-1 .inner {\n                                    padding-left: 0px;\n                                    padding-right: 0px;\n\n                                }\n                            }\n                        <\/style>\n                    <\/div>\n                                        \n                            \n        <\/div>\n    <\/div>\n<\/section>\n\n<style>\n        #block_c3e3b892e576875bb306cc4fe7a867b6 {\n        background-image: url('');\n    }\n    \n    #block_c3e3b892e576875bb306cc4fe7a867b6 .inner-container {\n        padding: 60px 0 60px 0;\n    }\n\n    @media (min-width: 1024px) {\n        #block_c3e3b892e576875bb306cc4fe7a867b6 .inner-container {\n            padding: 90px 0 120px 0;\n        }\n    }\n<\/style>\n","protected":false},"excerpt":{"rendered":"","protected":false},"featured_media":0,"parent":28,"menu_order":8,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"amenities":[],"city":[],"neighborhood":[],"class_list":["post-8167","listings","type-listings","status-publish","format-standard","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/www.qualityrvresorts.com\/wp-json\/wp\/v2\/listings\/8167","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.qualityrvresorts.com\/wp-json\/wp\/v2\/listings"}],"about":[{"href":"https:\/\/www.qualityrvresorts.com\/wp-json\/wp\/v2\/types\/listings"}],"version-history":[{"count":3,"href":"https:\/\/www.qualityrvresorts.com\/wp-json\/wp\/v2\/listings\/8167\/revisions"}],"predecessor-version":[{"id":8245,"href":"https:\/\/www.qualityrvresorts.com\/wp-json\/wp\/v2\/listings\/8167\/revisions\/8245"}],"up":[{"embeddable":true,"href":"https:\/\/www.qualityrvresorts.com\/wp-json\/wp\/v2\/listings\/28"}],"wp:attachment":[{"href":"https:\/\/www.qualityrvresorts.com\/wp-json\/wp\/v2\/media?parent=8167"}],"wp:term":[{"taxonomy":"amenities","embeddable":true,"href":"https:\/\/www.qualityrvresorts.com\/wp-json\/wp\/v2\/amenities?post=8167"},{"taxonomy":"city","embeddable":true,"href":"https:\/\/www.qualityrvresorts.com\/wp-json\/wp\/v2\/city?post=8167"},{"taxonomy":"neighborhood","embeddable":true,"href":"https:\/\/www.qualityrvresorts.com\/wp-json\/wp\/v2\/neighborhood?post=8167"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}