{"version":3,"file":"AE.general.min.js","sources":["AE.general.min.js"],"sourcesContent":["/*\n===================================================================================================\nThis module declares top-level methods and instantiates the AE object. It must be loaded first.\n===================================================================================================\n*/\n\n\n/*\nThe AE object will be the returned result of a self-invoked function. This allows us to expose methods\nfor use by other modules while protecting some variables in a closure. If the APP.ui object is already\ndefined then it's not altered. This prevents us from running the entire function each time one of its\ninternal methods are called.\n*/\n;\nvar AE = AE || (function() {\n /* This is where we set variables and things that will only live inside the closure. */\n var APP = {\n resizeTasks: [],\n scrollTasks: [],\n transitionTasks: [],\n displayObjects: {\n /*\n This is just a container for any custom modules that go along with Mura display objects. There\n isn't an init function for this. It's more of a library for other submodules.\n\n Nothing will be added in this file. Display objects will add themselves to it, and will live\n within the AE object.\n\n It's important to know that display objects could load before this file. To prevent that, they\n are written to only run when a global Deferred Object is resolved by this controller module,\n and to add themselves to the displayObjects property at that time.\n */\n },\n components: {\n // A container for custom components in Mura. They'll be added in a way that's similar to display objects.\n },\n init: function() {\n APP.props = {\n $bodyElement: $('body'),\n $scrollContainer: $('#scroll-container'),\n $scrollContent: $('#scroll-content'),\n $stickyWrapper: $('#sticky-wrapper'),\n $siteContainer: $('#site-container'),\n $mainFooter: $('#main-footer'),\n $mainFooterContent: $('#main-footer__content'),\n $mainNav: $('#mainnav'),\n $masthead: $('#masthead'),\n $mainNavLink: $('#mainnav__link'),\n $mainNavFull: $('#mainnav').add('#mainnav__link'),\n isLegacy: ($('html').hasClass('ua-ie-9')), // If the user is browsing with IE 9, No longer support 8.\n isIE: false,\n googleMapsAPIKey: '',\n isAUNZ: false\n };\n\n if (oSite) {\n if (_.isObject(oSite)) { $.extend(true, APP.props, oSite); }\n }\n if (AE.props.chaosSystem) { APP.props.isAUNZ = (AE.props.chaosSystem === 'AU' || AE.props.chaosSystem === 'NZ') ? true : false; }\n APP.buildURLObject();\n\n /*\n The transition event is different across browsers, so this function will loop through them\n until it gets a hit. Once done, event handlers can be registered to the variable. This is\n currently used in the matrix, with a fallback to jQuery animate for legacy browsers. - bcribb\n */\n APP.props.transEnd = (function() {\n var t;\n var el = document.createElement('fakeelement');\n var transitions = {\n 'transition': 'transitionend',\n 'OTransition': 'oTransitionEnd',\n 'MozTransition': 'transitionend',\n 'WebkitTransition': 'webkitTransitionEnd'\n };\n\n for (t in transitions) {\n if (el.style[t] !== undefined) {\n return transitions[t];\n }\n }\n })();\n\t\t\t\n\t\t\t/* getSiteViewType() references the props object, so this can't just be tossed into props. */\n\t\t\tAPP.windowSize = APP.getSiteViewType();\n\t\t\t\n\t\t\t// Set the Criteo Tag view type to the data layer object\n\t\t\taeDataLayer.push({\"criteoSiteType\":APP.getCriteoTagSiteViewType()});\n\t\t\t\n\t\t\t/*\n\t\t\t\tThis will be used to compare window width before and after a resize. This way, we only resize\n\t\t\t\twhen the window WIDTH changes, and not when the height changes. Starts as null because\n\t\t\t\tmanageResize needs to fail the first test so it can run once on page load.\n\t\t\t*/\n\t\t\tAPP.width = null;\n\t\t\t\n\t\t\tif (AE.privateBrowsing) {\n\t\t\t\tAE.privateBrowsing.init();\n\t\t\t}\n\t\t\tif (AE.nav) {\n\t\t\t\tAE.nav.init();\n\t\t\t}\n\t\t\t/* Legacy and Utils are used by Autocomplete. */\n\t\t\tif (AE.legacy) {\n\t\t\t\tAE.legacy.init();\n\t\t\t\tAPP.props.isIE = AE.legacy.grief.isIE;\n\t\t\t}\n\t\t\tif (AE.utils) {\n\t\t\t\tAE.utils.init();\n\t\t\t}\n\t\t\tif (AE.ui) {\n\t\t\t\tAE.ui.init(); /* This init will run init functions for its sub-modules. */\n\t\t\t}\n\t\t\tif (AE.ga && AECookie.read('iosTrackingDisabled') !== 'true') { /*Google Analytics*/\n\t\t\t\tAE.ga.init();\n\t\t\t}\n\t\t\tif (AE.cd && AECookie.read('iosTrackingDisabled') !== 'true') {/* Tracking Dimensions */\n\t\t\t\twindow.addEventListener('load', checkAEcd);\n\t\t\t}\n\t\t\tif (AE.forms) {\n\t\t\t\tAE.forms.init();\n\t\t\t}\n if (AE.maps) {\n AE.maps.init();\n }\n\t\t\tif (AE.account) {\n\t\t\t\tAE.account.init();\n\t\t\t}\n if (AE.modal) {\n AE.modal.init();\n }\n\t\t\tif (AE.mura) { \n\t\t\t\twindow.addEventListener('load', checkMura);\n\t\t\t}\n\t\t\tif (AE.newsletter) {\n\t\t\t\tAE.newsletter.init();\n\t\t\t}\n if (AE.feeds) {\n AE.feeds.init();\n }\n if (AE.booking && $('#aebooking,#aemodify,#peugeot-buy-back')[0]) {\n AE.booking.init(); /* This init will run init functions for its sub-modules. */\n }\n\t\t\t// White label iFrame pages\n\t\t\tif ($('.whitelabel-if')[0]) {\n\t\t\t\twindow.addEventListener('load', checkWlIframeResizer);\n\t\t\t}\n \n // Preventing persistent button loading states\n // WEBAE3-5945 - Reset any disabled elements on initial page show (to fix back/forward navigation issues)\n window.addEventListener('pageshow', resetLoadingBtns);\n\n function resetLoadingBtns()\n {\n $('.ui--btn-submit-wait').removeAttr('disabled').removeClass('btn--no-icon').find('i.fa-cog').remove();\n $('.rateFinger__button').removeAttr('disabled').removeClass('btn--no-icon');\n $('.insurance__options.last td.btn-disabled i.fa-cog, #insuranceUI .package-btn-wrapper.btn-disabled i.fa-cog').remove();\n $('.insurance__options.last td.btn-disabled, #insuranceUI .package-btn-wrapper.btn-disabled').removeClass('btn-disabled');\n $('#carUpgradeY, #carUpgradeN').removeAttr('disabled');\n $('.fingerCancelLink').css('pointer-events', 'all');\n \n // iPhone Safari only:\n if($('body').attr('id') == 'results' && $('html').hasClass('ios') && $('html').hasClass('mobile') && $('html').hasClass('ua-safari') && $('.ui--btn-submit-wait').length) {\n AE.ui.init();\n AE.booking.matrix.init();\n AE.ui.search.init();\n }\n \n $('.ui--btn-submit-wait').removeClass('ui--btn-submit-wait');\n }\n \n\t\t\t// White label page within an iFrame window\n\t\t\tfunction checkWlIframeResizer() {\n\t\t\t\tif ('parentIFrame' in window) {\n\t\t\t\t\t// AE PAGE URLs: /, /search/, /results/, /options/, /upgrade/, /checkout/, /confirmation/\n\t\t\t\t\tvar wlIframePagesNotToScrollToTheTop = [\"\", \"/\", \"/search/\", \"/foo/\", \"/bar/\"]; //zero-based\n\t\t\t\t\tif (wlIframePagesNotToScrollToTheTop.indexOf(oSite.path_info) < 0) {\n\t\t\t\t\t\t// if we do not find a page in the list, that means we want to shift the parent page\n\t\t\t\t\t\tvar amountOfParentWindowToShow = 50; //in pixels\n\t\t\t\t\t\twindow.parentIFrame.getPageInfo(function(parentPageInfo) { \n\t\t\t\t\t\t\tvar distanceFromParentTopToIframe = parentPageInfo.offsetTop;\n\t\t\t\t\t\t\tvar amountToScrollParentWindow = distanceFromParentTopToIframe - amountOfParentWindowToShow;\n\t\t\t\t\t\t\twindow.parentIFrame.scrollTo(0, amountToScrollParentWindow); //scroll the parent page\n\t\t\t\t\t\t\twindow.parentIFrame.getPageInfo(false); //stop trying to auto-scroll\n\t\t\t\t\t\t});\n\t\t\t\t\t} else if (wlIframePagesNotToScrollToTheTop.indexOf(oSite.path_info) == 0 || wlIframePagesNotToScrollToTheTop.indexOf(oSite.path_info) == 1) {\n\t\t\t\t\t\t// This is the homepage (array is zero-based)\n\t\t\t\t\t\t/*\n\t\t\t\t\t\twindow.parentIFrame.scrollTo(0,0); //scroll the parent page to it's top\n\t\t\t\t\t\twindow.parentIFrame.getPageInfo(false); //stop trying to auto-scroll\n\t\t\t\t\t\t*/\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\twindow.removeEventListener('load', checkWlIframeResizer);\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tsetTimeout(function(){\n\t\t\t\t\treturn checkWlIframeResizer();\n\t\t\t\t},100); // wait 1/10th of a second\n\t\t\t}\n\t\t\t\n\t\t\tfunction checkAEcd() {\n\t\t\t\tif ('AECustomDimension' in window) {\n\t\t\t\t\tAE.cd.init();\n\t\t\t\t\twindow.removeEventListener('load', checkAEcd);\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\treturn checkAEcd();\n\t\t\t}\n\t\t\t\n\t\t\tfunction checkMura() {\n\t\t\t\tif ('mura' in window) {\n\t\t\t\t\tAE.mura.init();\n\t\t\t\t\twindow.removeEventListener('load', checkMura);\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\treturn checkMura();\n\t\t\t}\n\t\t\t\n /*\n Setup debouncing for resize tasks. Run the manageResize function once upon init. This part relies upon having UnderscoreJS\n loaded along with jQuery. It runs all resize tasks at the end of a resize. DO NOT CHANGE THIS TO A THROTTLE. It lowers our\n performance considerably and the manageResize task will error out.\n http://underscorejs.org/\n */\n var debounced = _.debounce(APP.manageResize, 250);\n $(window).on('resize', debounced);\n\n var debounceScroll = _.debounce(APP.manageScroll, 0, true);\n $('#scroll-content').on('scroll', debounceScroll);\n\n /* Initial resize tasks */\n var initTasks = {\n func: function() {\n /* These lines of code will be run during resize, but they'll be throttled. */\n\n var siteSize = APP.getSiteViewType();\n\n /* Support for CSS break-points */\n if (siteSize === 'desk' || siteSize === 'desk-wide') {\n // Add or remove classes if the window is big.\n } else {\n // Add or remove classesif the window is small.\n }\n\n /* Some tasks need to be run only when transitioning to or from the palm size. */\n\n /* If the current size doesn't match the last known size. */\n if (APP.windowSize !== siteSize) {\n\n if (APP.windowSize === 'palm') {\n /* Starting size was palm, which means that we're getting larger. Moving up. */\n APP.palmTransition(false);\n } else {\n /*\n Started at a larger size, so we only want to do something if we're going to palm. We don't want\n to change anything if we're just going from 'desk' to 'lap', for example.\n */\n if (siteSize === 'palm') {\n APP.palmTransition(true);\n }\n }\n /* After sorting out what to do, set the new props size. */\n APP.windowSize = siteSize;\n\n } else {\n /* Sizes match, so there's no need to do anything. */\n\n }\n },\n args: [] // No arguments, so it's an empty array.\n };\n initTasks.func(initTasks.args); // Initial call of initial resize task.\n APP.addResizeTask(initTasks);\n APP.manageResize();\n \n /* Uncomment this block of code to see when the palmTransition() function fires, and to see the arguments array.\n var myFunction = function() {\n console.log('myfunction: ' + arguments[0]);\n console.log(arguments);\n }\n var myTask = {func:myFunction, args:['arg1','arg2']}\n APP.addTransitionTask(myTask);\n */\n dfd_ready.resolve();\n if (AE.forms) AE.forms.postAutoForm();\n },\n _augmentPrivateBrowsingLocalStorage: function() {\n // See gist.github.com/jarrodirwin/\n // Refer to gist.github.com/remy/350433\n var Storage = function(type) {\n function createCookie(name, value, days) {\n var date, expires;\n\n if (days) {\n date = new Date();\n date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));\n expires = \"; expires=\" + date.toGMTString();\n } else {\n expires = \"\";\n }\n document.cookie = name + \"=\" + value + expires + \"; path=/\";\n }\n\n function readCookie(name) {\n var nameEQ = name + \"=\",\n ca = document.cookie.split(';'),\n i, c;\n\n for (i = 0; i < ca.length; i++) {\n c = ca[i];\n while (c.charAt(0) == ' ') {\n c = c.substring(1, c.length);\n }\n if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length, c.length);\n }\n return null;\n }\n\n function setData(data) {\n data = encodeURIComponent(JSON.stringify(data));\n return (type == 'session') ? createCookie(getSessionName(), data, 365) : createCookie('localStorage', data, 365);\n }\n\n function clearData() {\n return (type == 'session') ? createCookie(getSessionName(), '', 365) : createCookie('localStorage', '', 365);\n }\n\n function getData() {\n var data = type == 'session' ? readCookie(getSessionName()) : readCookie('localStorage');\n return data ? JSON.parse(decodeURIComponent(data)) : {};\n }\n\n function getSessionName() {\n if (!window.name) window.name = new Date().getTime();\n return 'sessionStorage' + window.name;\n }\n\n var data = getData();\n\n return {\n length: 0,\n clear: function() {\n data = {};\n this.length = 0;\n clearData();\n },\n getItem: function(key) {\n return data[key] === undefined ? null : data[key];\n },\n key: function(i) {\n // not perfect, but works\n var ctr = 0;\n for (var k in data) {\n if (ctr == i) return k;\n else ctr++;\n }\n return null;\n },\n removeItem: function(key) {\n delete data[key];\n this.length--;\n setData(data);\n },\n setItem: function(key, value) {\n data[key] = value + '';\n this.length++;\n setData(data);\n }\n };\n };\n\n // Replace window.localStorage and window.sessionStorage with out custom implementation.\n var localStorage = new Storage('local');\n var sessionStorage = new Storage('session');\n\n window.localStorage = localStorage;\n window.sessionStorage = sessionStorage;\n // For Safari private browsing need to also set the proto value.\n if (window.localStorage) {\n window.localStorage.__proto__ = localStorage;\n window.sessionStorage.__proto__ = sessionStorage;\n }\n },\n addResizeTask: function(task) {\n /*\n\n Adds and object with a \"func\" property and an \"args\" property. This is VERY important, because we use the apply() method\n in manageResize(). All tasks in the queue will be run during resize. We throttle resizing to keep things from getting too crazy.\n\n Basic syntax:\n myTask = {func:myFunction, args:[arg1,arg2]}\n\n Example of adding a task:\n var myTask = { func: function(){console.log(\"I'm resizing!\")} }\n APP.addResizeTask(myTask);\n\n Or you could be fancy and do this:\n APP.addResizeTask( { func: function(){console.log(\"I'm resizing!\")} } );\n */\n\n task.args = task.args || [];\n APP.resizeTasks.push(task);\n },\n addScrollTask: function(task) {\n task.args = task.args || [];\n APP.scrollTasks.push(task);\n },\n addTransitionTask: function(task) {\n /*\n Same as addResizeTask() but meant for the transition between the \"palm\" size and anything larger.\n\n IMPORTANT NOTE: Syntax is the same as above, but the first argument will always be the direction of the transition. So if you\n send in the following:\n -- var myTask = {func:myFunction, args:[arg1,arg2]}\n -- APP.addTransitionTask(myTask);\n\n It would be executed like this:\n -- myFunction(direction,arg1,arg2);\n\n */\n\n task.args = task.args || [];\n\n /*\n Insert a false value in the beginning of the args array. This is a placeholder for the \"toPalm\" variable and will be updated\n each time the palmTransition() function is run.\n */\n task.args.unshift(false);\n APP.transitionTasks.push(task);\n },\n manageResize: function() {\n var newWidth = APP.props.$bodyElement.outerWidth(true);\n\n\n // Correct footer height\n if (APP.props.$bodyElement.hasClass('searchwait') || APP.props.$bodyElement.hasClass('sticky-active')) {\n\n // The CSS kills the absolute positioning on the footer, so we don't need to compensate by addign padding to the container.\n var footerHeight = (APP.getSiteViewType() === 'palm') ? 0 : $('#main-footer__content').outerHeight(true);\n\n APP.props.$mainFooter.height(footerHeight); //.addClass('sticky');\n APP.props.$stickyWrapper.css('padding-bottom', footerHeight);\n }\n\n\n // If the width has changed, then run resize tasks. Forget the window height.\n if (APP.width !== newWidth) {\n\n // Set width to the new window width\n APP.width = newWidth;\n\n // Cycle through resize tasks.\n for (var i = 0; i < APP.resizeTasks.length; i++) {\n var task = APP.resizeTasks[i];\n task.func.apply(this, task.args);\n }\n }\n },\n manageScroll: function() {\n // Cycle through scroll tasks.\n for (var i = 0; i < APP.scrollTasks.length; i++) {\n var task = APP.scrollTasks[i];\n task.func.apply(this, task.args);\n }\n },\n heightAdjust: function() {\n var eleHeight = 0;\n\n $(arguments[0]).each(function() {\n $(this).height(''); // set to auto height\n });\n $(arguments[0]).each(function() {\n eleHeight = ($(this).height() > eleHeight) ? $(this).height() : eleHeight; // find tallest element\n });\n $(arguments[0]).each(function() {\n $(this).height(eleHeight); // set height of the tallest element\n });\n\n return eleHeight;\n },\n palmTransition: function(toPalm) {\n /*\n NOTE: This function is called by initTasks(), which is the first task function added to manageResize() above. Every resize,\n the window size is checked to see if this function should be run.\n\n Once run, we cycle through the palm transition tasks. \"toPalm\" is true when arriving at palm from a larger size, false when moving up from\n palm to a larger size. We initialize the variable to false in case it isn't passed in for some reason.\n */\n toPalm = toPalm || false;\n for (var i = 0; i < APP.transitionTasks.length; i++) {\n var task = APP.transitionTasks[i];\n /* The first argument is inserted by addTransitionTask() as a placeholder for the \"toPalm\" variable. */\n task.args[0] = toPalm;\n task.func.apply(this, task.args);\n }\n },\n getSiteViewType: function() {\n var sizes = {\n /*\n Support for CSS break-points. If you change them in the variables Sass file, then\n you need to change them here as well. This function should be used in harmony with CSS.\n */\n lapStart: 701,\n deskStart: 1024,\n deskWideStart: 1200\n };\n currentSize = APP.props.$bodyElement.outerWidth(true);\n sizeType = \"palm\";\n\n if (currentSize >= sizes.lapStart) {\n sizeType = \"lap\";\n }\n if (currentSize >= sizes.deskStart) {\n sizeType = \"desk\";\n }\n if (currentSize >= sizes.deskWideStart) {\n sizeType = \"desk-wide\";\n }\n return sizeType;\n },\n\t\tgetCriteoTagSiteViewType: function() {\n\t\t\tswitch (AE.getSiteViewType()) {\n\t\t\t\tcase 'palm':\n\t\t\t\t\tsizeType = 'm';\n\t\t\t\t\tbreak;\n\t\t\t\tcase 'lap':\n\t\t\t\t\tsizeType = 't';\n\t\t\t\t\tbreak;\n\t\t\t\tcase 'desk':\n\t\t\t\tcase 'desk-wide':\n\t\t\t\t\tsizeType = 'd';\n\t\t\t\t\tbreak;\n\t\t\t\tdefault:\n\t\t\t\t\tsizeType = 'd';\n\t\t\t\t\tbreak;\n\t\t\t}\n\t\n\t\t\treturn(sizeType);\n\t\t},\n buildURLObject: function() {\n APP.url = APP.url || {};\n APP.url.props = APP.url.props || {};\n APP.url.props.host = window.location.hostname;\n APP.url.props.path = window.location.pathname;\n APP.url.props.protcol = window.location.protocol;\n APP.url.props.query = window.location.search;\n APP.url.props.href = window.location.href;\n var qString = (APP.url.props.query.length && APP.url.props.query.substring(0, 1) === '?') ? APP.url.props.query.substring(1) : APP.url.props.query;\n var aPairs = qString.split('&');\n for (var i = 0; i < aPairs.length; i++) {\n var aKeyVal = aPairs[i].split('=');\n if (aKeyVal[0].trim().length) APP.url[aKeyVal[0].trim()] = (aKeyVal[1]) ? aKeyVal[1].trim() : true;\n }\n }\n };\n return APP;\n})();\n\n/*\nThe comments below will tell the Prepros app to append the listed JavaScript files, resulting in one big JavaScript file.\nOur third-party service will then minify this in Production.\nhttp://discuss.prepros.io/t/concatenate-and-minify-javascript/19\n*/\n;var AE = AE || {}; /* Add to Base object or create it if it doesn't exist. */\n\nAE.account = AE.account || (function () {\n\t/*\n\tDEPENDENCIES: AE\n\t*/\n\tvar APP = {\n\t\tinit: function () {\n\t\t\t$('.arrow').show();\n\t\t\tvar resetInput = document.getElementById('member_reset_email');\n\t\t\tvar resetBttn = document.getElementById('account_lookup_button');\n\n\t\t\t APP.props = {\n $resetInput: document.getElementById('member_reset_email'),\n $resetBttn: $(\"form.validate\"),\n $isInCheckout: window.location.pathname.split('/')[1] == 'checkout',\n \t\t\t\t$isInMemberAccount: window.location.pathname.split('/')[1] == 'member-accounts',\n $accountLoginForm: $(\"form#account_login_form:visible\"),\n $isInLogin:($(\"form#account_login_form:visible\").length !=0) ? true :false,\n $isLoggedIn: (window.jsloginStatus == 'true' || window.jsloginStatus)? true :false, \n $memberDefaultSection: $('#member_account_information_block'), \n $ObjMember: '/plugins/ae3/lib/Member3.cfc' ,\n $ObjAff: '/plugins/ae3/lib/Affiliate3.cfc' \n \t}; \t\n\n\t\t\tif(APP.props.$resetInput){\n\t\t\t\tAPP.props.$resetInput.addEventListener('keydown',function(e){\n\t\t\t\t\tif(e.which == 13){\n\t\t\t\t\t\te.preventDefault();\n\t\t\t\t\t\tAPP.props.$resetBttn.click();\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\n\t\t\t//Added for WEBAE3-4802 - VM\n\n\t\t\tlet countryStates = ['US', 'AU', 'CA', 'BR', 'ZA'];\n\n\t\t\t$( window ).load(function() {\t\t\t\t\n\t\t\t\tvar selectedName = $('.country--select').find(\":selected\").val();\n\t\t\t\tif (countryStates.includes(selectedName)) {\n\t\t\t\t\t$('.state-container').show();\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\t$('.state-container').removeAttr(\"style\").hide();\n\t\t\t\t}\t\n\t\t\t});\n\t\t\t\n\t\t\t//Added for WEBAE3-4802 - VM\n\t\t\t\n\t\t\t$('.country--select').change(function(){\n\t\t\t\tvar chosenCountry = $(this).val();\t\t\t\n\t\t\t\tif(countryStates.includes(chosenCountry)){ \n\t\t\t\t\t$('.state-container').show();\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\t$('.state-container').removeAttr(\"style\").hide();\n\t\t\t\t}\n\t\t\t});\n\n\t\t\t$('#account_update').on('focus', '.state--select,.country--select', function(){\t\t\t\t\n\t\t\t \tvar isValid = $(this).parent().hasClass('ui-state-valid'); \n\t\t\t \tvar isInValid = $(this).parent().hasClass('ui-state-invalid'); \n\t\t\t \tif(!isValid && !isInValid){$(this).parent().css(\"border\", \"2px solid #3089e0\");}\n\t\t\t});\n\n\t\t\t$('#account_update').on('blur', '.state--select,.country--select', function(){\t\t\t\t\n\t\t\t \t$(this).parent().css(\"border\", \"2px solid #5fba35\");\n\t\t\t});\n\n\t\t\t$('div.member_accounts [data-pattern=\"notblank\"],div.member_accounts [data-pattern=\"email\"]').on('keyup blur', function(ele) {\n\t\t\t\tvar $formId = $(this).parents('form').attr('id');\n\t\t\t\tvar $fld = $(this).attr('name');\n\t\t\t\tAPP.clearServerError($formId,$fld);\t\t\t\t\t\n\t\t\t});\n\n\t\t\n\t\t\t// only initilize load member information for acount logged in page\n\t\t\t//isInMemberAccount = window.location.pathname.split('/')[1] == 'member-accounts';\n\t\t\n\t\t\t$('input.validateEmail').on('keyup blur', function(ele) {\n\t\t\t\tvar $formId = $(this).parents('form').attr('id');\n\t\t\t\tvar $match = $(this).attr('data-match');\n\t\t\t\tvar $checkOther = $('#' + $formId + ' input[name=' + $match + ']');\n\t\t\t\tAPP.initCustomMatchVerification(this);\n\t\t\t\tAPP.initCustomMatchVerification($checkOther);\t\t\t\t\n\t\t\t});\n\n\t\t\n\t\t\t$('input.validateRemail').on('keyup blur', function(ele) {\n\t\t\t\tAPP.initCustomMatchVerification(this);\t\n\t\t\t});\n\n\t\t\t$('input.validateRemail').on('paste', function(ele) {\n\t\t\t\tvar $formId = $(this).parents('form').attr('id');\n\t\t\t\tAPP.removeGuardianError($formId,$(this).attr('name'));\n\t\t\t});\n\n\n\t\t $('input#member_reemail').on('blur keyup', function(ele) {\n\t\t\t\tAPP.initCustomMatchVerification(this);\n\t\t\t});\n\t\n\t\t $('input.validateRepass').on('focus blur keyup', function() {\n\t\t \t\tvar $result = APP.initCustomMatchVerification(this);\n\t\t\t});\n\n\t\t\t$('input.validatePassword').on('focus keyup blur', function(ele) {\n\n\t\t\t\tvar $formId = $(this).parents('form').attr('id');\n\n\t\t\t\tvar $match = $(this).attr('data-match');\n\t\t\t\tvar $checkOther = $('#' + $formId + ' input[name=' + $match + ']');\n\t\t\t\tif($(this).hasClass('legacy')){\n\t\t\t\t\tAPP.checkPasswordLegacy($formId);\n\t\t\t\t}\n\t\t\t\telse{\n\t\t\t\t\tAPP.checkPassword($formId);\n\t\t\t\t\tAPP.initCustomMatchVerification($checkOther);\n\t\t\t\t}\t\t\t\t\t\t\n\t\t\t});\n\n\t\t $('input#current_password').on('blur', function(ele) {\n\t\t\t\tvar $formId = $(this).parents('form').attr('id');\n\t\t\t var $error_ele = APP.getErrorEle($formId,$(this).attr('name'));\n\t\t\t\tAPP.removeGuardianError($formId,$(this).attr('name'));\n\t\t\t\t$($error_ele ).html('');\t\n\t\t\t});\n\n\n\t $('input.current_pwd').on('blur', function(ele) {\n\t\t\t\tvar $formId = $(this).parents('form').attr('id');\n\t\t\t var $error_ele = APP.getErrorEle($formId,$(this).attr('name'));\n\t\t\t\t//APP.removeGuardianError($formId,$(this).attr('name'));\n\t\t\t\t$($error_ele ).html('');\t\n\t\t\t});\n\n\t\t $('input#member_email').on('blur', function(ele) {\n\t\t \t var $formId = $(this).parents('form').attr('id');\n\t\t \t var $error_ele = APP.getErrorEle($formId,'member_email');\n\t\t\t\t$($error_ele).html('');\t\n\t\t\t});\n\n\t\t\tif (APP.props.$isInMemberAccount && !APP.props.$isInLogin) {\n\n\t\t\t\t $('#member_signup #country,#state').on('blur', function() {\n\t\t\t\t\t$(this).parent().css(\"border\", \"2px solid #5fba35\");\t\t\t\t\t\n\t\t\t\t });\n\n\t\t\t\t $('#member_signup #country,#state').on('focus', function() {\n\t\t\t\t \tvar isValid = $(this).parent().hasClass('ui-state-valid'); \n\t\t\t\t \tvar isInValid = $(this).parent().hasClass('ui-state-invalid'); \n\t\t\t\t \tif(!isValid && !isInValid){$(this).parent().css(\"border\", \"2px solid #3089e0\");}\t\t\t\t\t\n\t\t\t\t });\n\n\t\t\t\t//jsloginStatus status appears to be not a true boolean\n\t\t\t\tif (APP.props.$isLoggedIn && APP.props.$memberDefaultSection.length != 0) {\n\t\t\t\t\t/* Member Account page */\n\t\t\t\t\t$('#account_update_button').attr('disabled', false);\n\t\t\t\t\tAPP.loadAccountInformation(false);\n\t\t\t\t\t//WEBAE3-4930 fire ajax call if opening payment section via nav link, only run\n\t\t\t\t\t//this if we have correct div\n\t\t\t\t\tif(document.getElementById('member_payment_information_block')){\n\t\t\t\t\t\tAPP.getPayOptions();\n\t\t\t\t\t}\n\t\t\t\t\t// If we are getting to the member account page via link, determine which section to show\n\t\t\t\t\tif ( localStorage.getItem('memberAccountSection') && _.isString(localStorage.getItem('memberAccountSection')) && localStorage.getItem('memberAccountSection') != '') {\n\t\t\t\t\t\tAPP.navigateMemberPageLocalStorage();\n\t\t\t\t\t }\n\t\t\t\t}\n\t\t}\n\n\t\tAE.ui.addBodyClickTask({\n\t\t\tfunc: APP.onBodyClick\n\t\t});\n\n\t},\n\n\t/* Body Click Watch Tasks */\n\tonBodyClick: function (event, $target) {\t\t\n\n\t\t// Prevent the 'Enter Key' from submitting forms\n\t\tif (event.which !== 13) {\n\t\t\tvar elemID, thisForm;\n\t\t\t// only initilize load member information for acount logged in page\n\t\t\t//var isInMemberAccount = window.location.pathname.split('/')[1] == 'member-accounts';\n\t\t\tif($target.hasClass('member_login_portable') || $target.parent().hasClass('member_login_portable')) {\n\t\t\t\n\t\t\t\tAE.ui.dialog.launch({\n\t\t\t\t\tselector:'#memberloginNav',\n\t\t\t\t\tdialogClass:'account-signinform account-signinform--portable',\n\t\t\t\t\ttitleBar: false\n\t\t\t\t});\n\t\t\t}\n\t\t\t/* NAVBAR MEMBER LINKS */\n\t\t\tif($target.hasClass('my-account-dropdown') && APP.props.$isInMemberAccount) {\n\t\t\t\tevent.preventDefault();\n\t\t\t}\n\t\t\tif ($target.is('#member_my_reservations_link')) {\n\t\t\t\tlocalStorage.setItem('memberAccountSection', 'my_reservations');\n\t\t\t}\n\t\t\tif ($target.is('#member_account_information_link')) {\n\t\t\t\tAPP.loadAccountInformation(false);\n\t\t\t\tlocalStorage.setItem('memberAccountSection', 'account_information');\n\t\t\t}\n\t\t\tif ($target.is('#member_payment_information_link')) {\n\t\t\t\tlocalStorage.setItem('memberAccountSection', 'payment_information');\n\t\t\t}\n\t\t\tif ($target.is('#member_promotions_link')) {\n\t\t\t\tlocalStorage.setItem('memberAccountSection', 'promotions');\n\t\t\t}\n\t\t\tif ($target.is('#member_customer_support_link')) {\n\t\t\t\tlocalStorage.setItem('memberAccountSection', 'customer_support');\n\t\t\t}\n\t\t\tif(!APP.props.$isInMemberAccount && $target.hasClass('member_link')){\n\t\t\t\twindow.location.replace('/member-accounts');\n\t\t\t}\n\t\t\tif(APP.props.$isInMemberAccount && $target.hasClass('member_link') && APP.props.$isInLogin && window.jsloginStatus == 'true'){\n\t\t\t\twindow.location.replace('/member-accounts');\n\t\t\t}\n\t\t\tif($target.parent().parent().is('#member_account_information_block')){APP.loadAccountInformation(false);}\n\n\t\t\tif ($target.closest('div.menu-dropdown').hasClass('account-signinform') && $target.hasClass('ui-dialog-titlebar-close')){\n\t\t\t \tvar resetHidden= $(\"#memberPasswordResetNav\").hasClass('visuallyhidden');\n\t\t\t\tif(!resetHidden){\n\t\t\t\t\tAPP.setHTML('member-response-left', ''); \n\t\t\t\t\tAPP.hideEle('memberPasswordResetNav');\n\t\t\t\t\tAPP.showEle('memberloginNav');\n\t\t\t\t\t$(\"#member_reset_password_nav\").find(\"input[type=text], input[type=password], input[type=email]\").val(\"\");\n\t\t\t\t}\n\t\t\t }\n\n\t\t\tif($target.hasClass('account_post') && APP.props.$isInMemberAccount && !$target.hasClass('memberLogout') && !APP.props.$isInLogin){\n\t\t\t\tAPP.navigateMemberPageLocalStorage();\n\t\t\t}\n\t\n\t\t\tif ($target.is('#submitForm') && $(event.target).attr('data-value') == 'btt-submit_booking') {\n\t\t\t\tvar frm_selector = 'form#ae-checkout';\n\t\t\t\tvar $forms = $(frm_selector);\n\t\t\t\tAE.forms.applyGuardian($forms);\n\t\t\t\tAE.forms.addSpinGear($target);\n\n\t\t\t\t$(\"form#ae-checkout\").submit();\n\n\t\t\t\tvar eleInvalid = $(frm_selector + \" .ui-state-invalid\")[0];\t\n\t\t\t\tif (eleInvalid){\n\t\t\t\t AE.forms.removeSpinGear($target);\n\t\t\t\t} \n\t\t\t}\n\n\t\t\tif ($target.is('#acct__pswd__submit')) {\n\t\t\t\t var $thisForm = $target.closest('form')[0];\n\t\t\t\t var $matchEle = $(\"form#\" + $thisForm.id + \" input.validateRepass\");\t\t\t\t\n\t\t\t\t $(\"span.custom_msg\").html('');\n\t\t\t\t $($thisForm).submit();\t\t\t\t\t\t\t\t\t\n\t\t\t}\n\n\t\t\t/************************ Aff ACCOUNT BUTTONS **********************/\t\t\t\n\n\t\t\tif ($target.is('#bttn_aff_pass_lookup')) {\n\t\t\t\tAE.forms.addSpinGear($target);\n\t\t\t\tAPP.sendResetAff($target);\t\t\t\t\t\t\t\t\n\t\t\t}\n\n\t\t\tif ($target.is('#btn_aff_pass_reset')) {\n\t\t\t\tAPP.submitAndCheckresetPasswordAff($target);\t\t\t\t\t\t\n\t\t\t}\n\n\t\t\tif ($target.is('#btn_aff_login')) {\n\t\t\t\tAE.forms.addSpinGear($target);\t\t\t\t\t\t\n\t\t\t}\n\n\t\t\tif ($target.is('#submitForm') && $(event.target).attr('data-value') == 'btn_aff_signup') {\n\t\t\t\tvar $thisForm = $target.closest('form')[0];\n\t\t\t $(\"form#\" + $thisForm.id + \" span.custom_msg\").html('');\n\t\t\t}\n\n\t\t\tif($target.hasClass('bttn_aff_pass_update--cancel')){\n\t\t\t\t$(\"div.frm_aff_update\").removeClass('visuallyhidden'); \n\t\t\t\t$( \"div#aff_pass_result\" ).remove();\n\t\t\t\t$( \"button.bttn_aff_pass_update--cancel\" ).remove();\n\t\t\t\t$('div.secnav')[0].scrollIntoView({behavior:'smooth',block: 'start'});\n\t\t\t}\n\n\t\t\tif($target.hasClass('btn--affOp')) {\n\t\t\t\t$(\"div.aff_frm_result\").html('');\n\t\t\t}\n\t\t\t\n\t\t\t/********* MEMBER ACCOUNT BUTTONS ******************/\n\n\t\t\t// Account logout link\n\t\t\tif ($target.hasClass('memberLogout')) {\n\t\t\t\n\t\t\t\tif(!$target.hasClass('noSpinner')){\n\t\t\t\t\t$('.arrow').hide();\n\t\t\t\t\tAE.forms.addSpinGear($target);\n\t\t\t\t}\n\t\t\t\t// WEBAE3-2167 clear local storage on logout\n\t\t\t\ttry {\n\t\t\t\t\tlocalStorage.clear();\n\t\t\t\t} catch (err) {\n\t\t\t\t\t// no local storage to clear\n\t\t\t\t}\n\t\t\t\t$('#account_form .account_form').val($(event.target).attr('data-value'));\n\n\t\t\t\tif(APP.props.$isInMemberAccount){\n\t\t\t\t\t$('#account_form input[name=form_location]').val('member-account');\n\t\t\t\t}\n\t\t\t\tAPP.logOutMember();\n\t\t\t\t//$('#account_form').submit();\n\t\t\t}\n\n\t\t\t// Member login\n\t\t\tif ($target.is('#account_login_button')) {\n\t\t\t\t$('form[name=\\'account_login_form\\']').submit(function(event) {event.preventDefault();});\n\t\t\t\t//APP.loginUser(); moved to AE.forms.js - WEBAE3-1686\n\t\t\t}\n\n\t\t\t// Create Account link\n\t\t\tif ($target.hasClass('account_create_link')) {\n\t\t\t\tthisForm = $('.account_create_link').closest('form')[0];\n\t\t\t\tlocalStorage.setItem('memberAccountSection', 'createAccount');\n\t\t\t\t$(thisForm).submit();\n\t\t\t}\n\n\t\t\t// Create Account submit\n\t\t\tif ($target.is('#account_create_button')) {\n\t\t\t\tAE.forms.addSpinGear($target);\n\t\t\t\t$($target).prop('disabled', true);\n\t\t\t\tif(APP.checkAccountFormsPreSubmit($target)){\n\t\t\t\t\tAPP.submitMemberAccountCreateForm($target);\n\t\t\t\t}\n\t\t\t\telse{\n\t\t\t\t\t$($target).prop('disabled', false);\n\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ($target.is('#savecard')) {\n\t\t\t\teleSaveCard = $('#savecard').is(':checked');\n\t\t\t\tAPP.setHTML('Member_error_message','');\n\t\t\t\t\n\t\t\t\tif(eleSaveCard){\t\n\t\t\t\t\tAPP.setHTML('acct_processing','..... checking accounts');\n\t\t\t\t\tthisForm = $target.closest('form')[0];\n\t\t\t\t\tvar memberEmail = $('#' + thisForm.id).find('input[name=email]').val();\n\t\t\t\t\tvar exists = '';\t\n\t\t\t\t\tAPP.checkMemberExistsByEmail(memberEmail);\t\n\t\t\t\t}\n\t\t\t\telse{\n\t\t\t\t\tAPP.handleCreateAccountFormCheckout(false, false);}\t\t\n\t\t\t}\n\n\t\t\tif ($target.is('#account_edit_button')) {\n\t\t\t\t// sets timeout for form to come into view after scrolling\n\t\t\t\tfunction editBtnScroll(callback) {\n\t\t\t\t\t$('#member_account_information_block')[0].scrollIntoView({behavior:'smooth',block: 'start'});\n\t\t\t\t\tsetTimeout(function(){\n\t\t\t\t\t\tcallback();\n\t\t\t\t\t}, 50);\n\t\t\t\t }\n\t\t\t\t \n\t\t\t\teditBtnScroll(function() {\n\t\t\t\t\tAPP.loadAccountUpdateForm();\n\t\t\t\t\tAPP.showHide('account_update','account_information');\n\t\t\t\t\t$('div.required').removeClass('ui-state-valid');\n\t\t\t\t});\n\t\t\t}\n\n\t\t\t// Account edit-cancel button\n\t\t\tif ($target.is('#account_edit_cancel_button')) {\n\t\t\t\t// move the page to put the account information more into view\n\t\t\t\tAPP.loadAccountInformation(true);\n\t\t\t\tAPP.setHTML('dspMemberUpdate', '');\n\t\t\t}\n\n\t\t\t// Account delete button\n\t\t\tif ($target.is('#account_delete_button') || $target.is('#account_edit_delete_button')) {\n\t\t\t\tAPP.deleteWarning($target);\n\t\t\t}\n\n\t\t\t// === Added for WEBAE3-4756 === //-\n\t\t\t$('#account_update_button').click(function(){\n\t\t\t\tsetTimeout(\n\t\t\t\t function() {\t\t\t\n\t\t\t\t\tconst cookieValue = document.cookie\n\t\t\t\t\t.split('; ')\n\t\t\t\t\t.find(row => row.startsWith('MEMBERAGE'))\n\t\t\t\t\t.split('=')[1];\n\t\t\t\t\t//\n\t\t\t\t\t// Get the existing data\n\t\t\t\t\tvar existing = localStorage.getItem('aeSearch');\n\t\t\t\t\t// convert the localStorage string to an array\n\t\t\t\t\texisting = existing ? JSON.parse(existing) : {};\n\t\t\t\t\t\t\t\n\t\t\t\t\tif ($('#member_dob').val().length === 0) {\n\t\t\t\t\t\texisting['searchAge'] = '40';\n\t\t\t\t\t\tlocalStorage.setItem('aeSearch', JSON.stringify(existing));\n\t\t\t\t\t\t//Set check box\n\t\t\t\t\t\tvar boxexisting = localStorage.getItem('aeSearch');\n\t\t\t\t\t\tboxexisting = boxexisting ? JSON.parse(boxexisting) : {};\n\t\t\t\t\t\tboxexisting['searchAgeCheckbox'] = true;\n\t\t\t\t\t\tlocalStorage.setItem('aeSearch', JSON.stringify(boxexisting));\n\t\t\t\t\t\t//searchAgeCheckbox\n\t\t\t\t\t\tlocation.reload();\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\texisting['searchAge'] = cookieValue;\t\t\t\t\t\t\n\t\t\t\t\t\t// Save back to localStorage\n\t\t\t\t\t\tlocalStorage.setItem('aeSearch', JSON.stringify(existing));\n\t\t\t\t\t\t// console.log(cookieValue);\n\t\t\t\t \n\t\t\t\t\t\t//Set check box\n\t\t\t\t\t\tvar boxexisting = localStorage.getItem('aeSearch');\n\t\t\t\t\t\tboxexisting = boxexisting ? JSON.parse(boxexisting) : {};\n\t\t\t\t\t\tboxexisting['searchAgeCheckbox'] = true;\n\t\t\t\t\t\tlocalStorage.setItem('aeSearch', JSON.stringify(boxexisting));\n\t\t\t\t\t\t//searchAgeCheckbox\n\t\t\t\t\t\tlocation.reload();\n\t\t\t\t\t\t}\n\t\t\t\t\t},\n\t\t\t\t700);\n\t\t\t});\n\n\t\t\t// Account update button\n\t\t\tif ($target.is('#account_update_button')) {\n\t\t\t\tAE.forms.addSpinGear($target);\n\t\t\t\t$($target).prop('disabled', true);\n\t\t\t\tif(APP.checkAccountFormsPreSubmit($target)){\n\t\t\t\t\tAPP.submitMemberUpdate($target);\n\t\t\t\t}\n\t\t\t\telse{\n\t\t\t\t\t$($target).prop('disabled', false);\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Account forgot password lookup button\n\t\t\tif ($target.is('.account_forgot_password')) {\n\t\t\t\twindow.location.replace('/member-accounts');\n\t\t\t}\n\n\t\t\t// Account send reset password button\n\t\t\tif ($target.is('#account_lookup_button')) {\n\t\t\t\tAE.forms.addSpinGear($target);\n\t\t\t\t$($target).prop('disabled', true);\n\t\t\t\tAPP.sendReset($target);\n\t\t\t}\n\n\t\t\t// Account save reset password button\n\t\t\tif ($target.is('.submit_password_save_button')) {\n\t\t\t\tvar thisForm = $target.closest('form')[0];\n\t\t\t\tvar frm_selector = 'form#' + thisForm.id;\n\t\t\t\tvar $forms = $(frm_selector);\n\t\t\t\tAE.forms.applyGuardian($forms);\t\n\t\t\t\tAE.forms.addSpinGear($target);\t\t\n\t\t\t\tif(APP.checkAccountFormsPreSubmit($target)){\n\t\t\t\t\t$($target).prop('disabled', true);\n\t\t\t\t\tAPP.submitAndCheckresetPassword(thisForm.id,'',$target)\n\t\t\t\t}\n\t\t\t\telse{\n\t\t\t\t\t$($target).prop('disabled', false);\n\t\t\t\t}\n\t\t\t\n\t\t\t}\n\n\t\t\tif ($target.is('#nav_submit_password_cancel')) {\n\t\t\t\tAPP.hideEle('memberPasswordResetNav');\n\t\t\t\tAPP.showEle('memberloginNav');\n\t\t\t\tthisForm.find(\"input[type=text], input[type=password], input[type=email]\").val(\"\");\t\t\t\t\t\n\t\t\t}\t\t\t\n\t\t\t// Reset password from member account logged in\n\t\t\tif ($target.is('#account_reset_memberUpdate')) {\n\t\t\t\twindow.jsloginStatus = false;\n\t\t\t\t$('#resetPasswordMemberUpdate').submit();\n\t\t\t}\n\t\t\t//WEBAE3-4932 my accoun stored payment handlers\n\t\t\tif ($target.is('#addNewCC')) {\n\t\t\t\tevent.preventDefault();\n\t\t\t\tAPP.toggleAddCard();\n\t\t\t\tAPP.getAddCardWidget();\n\t\t\t}\n\t\t\tif ($target.hasClass('deleteCC')) {\n\t\t\t\tevent.preventDefault();\n\t\t\t\tAPP.deleteCCWarning($target[0].dataset.cardid);\n\t\t\t}\n\t\t//clear dob field\n\t\tif ($target.hasClass('ui-datepicker-clear-input')) { \n\t\t\t\tevent.preventDefault();\n\t\t\t\t$('#member_dob').datepicker('setDate', null);\n\t\t\t\t$('span.ui-datepicker-clear-input').addClass('visuallyhidden');\n\t\t\t\t$('input#hidden-dob-date').val('');\n\t\t\t}\n\t\t}\n\n\t\tif ($target.hasClass('datePickerInput')) {\n\t\t\tAPP.showDobClear();\n\t\t}\n\n\t\tif($target.hasClass('toggleeMemberPayment')) {\n\t\t\tif($target.hasClass('open')) {\n\t\t\t\t//opening payment so get cards to display\n\t\t\t\tAPP.getPayOptions();\n\t\t\t} else {\n\t\t\t\tAPP.hideAddCardUI();//make sure AddCard UI gets hidden when closing payment pane\n\t\t\t\t$(\"#editCCControl\").empty();//empty control area on close\n\t\t\t}\n\t\t\t\n\t\t}\n\n\t\tif(APP.props.$isInMemberAccount){\n\t\t\tif ($target.hasClass('toggle_pm_header')){\n\t\t\t\t_.each($('.toggle_pm_header'),function(el){\n\t\t\t\t\tvar $el = $(el);\n\t\t\t\t\tif($el.data('togglee') !== $target.data('togglee')){\n\t\t\t\t\t\t$el.removeClass('open');\n\t\t\t\t\t\t$($el.data('togglee')).addClass('visuallyhidden');\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t\t\n\t\t\t\tif($target.attr('id') === 'headerMemberReservations'){\n\t\t\t\t\tAPP.loadAccountReservations();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\n\t},\n\n\tnavigateMemberPageLocalStorage: function() {\n\t\tAPP.navigateMemberPage(localStorage.getItem('memberAccountSection'));\n\t\tlocalStorage.removeItem('memberAccountSection');\n\t},\n\n\tnavigateMemberPage:function (section){\n\t\tvar $sectionToOpen = '#Dummy';\n\t\tvar $sectionToScrollTo = $('#dummy_block')[0];\n\t\t$('.toggle_pm_header').removeClass('open');\n\t\t$('.togglee.push--top').addClass('visuallyhidden');\n\n\t\tswitch (section) {\n\t\t\tcase 'my_reservations':\n\t\t\t\t$sectionToOpen = '#toggleeMemberReservations';\n\t\t\t\t$sectionToScrollTo = $('#member_my_reservations_block')[0];\n\t\t\t\tAPP.loadAccountReservations();\n\t\t\t\tbreak;\n\t\t\tcase 'account_information':\n\t\t\t\t$sectionToOpen = '#toggleeMemberAccount';\n\t\t\t\t$sectionToScrollTo = $('#member_account_information_block')[0];\n\t\t\t\tbreak;\n\t\t\tcase 'payment_information':\n\t\t\t\t$sectionToOpen = '#toggleeMemberPayment';\n\t\t\t\t$sectionToScrollTo = $('#member_payment_information_block')[0];\n\t\t\t\tbreak;\n\t\t\tcase 'promotions':\n\t\t\t\t$sectionToOpen = '#toggleeMemberPromotions';\n\t\t\t\t$sectionToScrollTo = $('#member_promotions_block')[0];\n\t\t\t\tbreak;\n\t\t\tcase 'createAccount': \n\t\t\t\t//WEBAE3-3287 - Change the default panel here when member account created\n\t\t\t\tif(AE.props.chaosSystem == 'GB' || AE.props.chaosSystem == 'EU'){\n\t\t\t\t\t$sectionToOpen = '#toggleeMemberPromotions';\n\t\t\t\t\t$sectionToScrollTo = $('#member_promotions_block')[0];\t\n\t\t\t\t}\n\t\t\t\t//WEBAE3-3378 My Account - Remove auto-scroll from post account-creation screen\n\t\t\t\telse{\n\t\t\t\t\t$sectionToOpen = '';\n\t\t\t\t\t$sectionToScrollTo = '';\t\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\tcase 'customer_support':\n\t\t\t\t$sectionToOpen = '#toggleeMemberSupport';\n\t\t\t\t$sectionToScrollTo = $('#member_customer_support_block')[0];\n\t\t\t\tbreak;\n\t\t\tdefault:\n\t\t\t\t$sectionToOpen = '#toggleeMemberAccount';\n\t\t\t\t$sectionToScrollTo = $('#member_account_information_block')[0];\n\t\t\t\tbreak;\n\t\t}\n\n\t\t\tif($sectionToOpen == 'account_information' ){APP.loadAccountInformation(false);}\n\t\t\t\n\t\t\tif($sectionToScrollTo != '' && $sectionToOpen != ''){\t\t\t\n\t\t\t\t// open up the desired section\n\t\t\t\t$('[data-togglee=\"' + $sectionToOpen + '\"]').trigger('click');\n\n\t\t\t\t// move the page to put the desired section more into view\n\t\t\t\t//using different scroll to function for my reservations so it will scroll to top.\n\t\t\t\t$sectionToScrollTo.scrollIntoView({behavior:'smooth',block: 'start'});\n\t\t\t\t// Since we are already on the member account page, we no longer need this info\n\t\t\t}\n\t},\n\tduplicateAccountWarning: function (msg) {\n\t\t\tvar oButtons = {}; // Preparing the Object ahead of the dialog operation allows for Dynamic Button name/text\n\n\t\t\t\toButtons[AEdata.account.duplicateModal.btn_reset] = function () {\n\t\t\t\t\twindow.location.href = '/member-accounts';\n\t\t\t\t\tAE.ui.dialog.close();\n\t\t\t\t};\n\n\t\t\t\toButtons[AEdata.account.duplicateModal.btn_login] = function () {\n\t\t\t\t\twindow.location.href = '/member-accounts';\n\t\t\t\t\tAE.ui.dialog.close();\n\t\t\t\t};\n\n\n\t\t\tvar buttonOpts = {\n\t\t\t\tsetClass: 'align-center soft-half--left',\n\t\t\t\tlastButtonClass: 'push--top',\n\t\t\t\tfirstButtonClass: 'btn--primary push--top'\n\t\t\t};\n\n\t\t\tAE.ui.dialog.launch({\n\t\t\t\ttitleBar: true,\n\t\t\t\tid: 'duplicateWarning',\n\t\t\t\tdialogClass: 'top-dialog',\n\t\t\t\tcontent: buildDuplicateAcctMarkup(msg),\n\t\t\t\tbuttons: oButtons,\n\t\t\t\tapplyUI: true,\n\t\t\t\tbuttonOpts: buttonOpts,\n\t\t\t\twidth: ($(window).width() > 600) ? 500 : '70%'\n\t\t\t});\n\n\t\t\tfunction buildDuplicateAcctMarkup(msg) {\n\t\t\t\tvar docFrag = $(document.createDocumentFragment());\n\t\t\t\tdocFrag.append($(document.createElement('div')).append(msg));\n\n\t\t\t\treturn docFrag;\n\t\t\t}\n\t},\n\tduplicateAccountWarningUpdate: function ($msg) {\n\t\tvar oButtons = {}; // Preparing the Object ahead of the dialog operation allows for Dynamic Button name/text\n\t\t\toButtons[AEdata.account.duplicateModalUpdate.btn_cancel] = function () {\n\t\t\tAE.ui.dialog.close();\n\t\t\tAPP.navigateMemberPage('account_information');\n\t\t};\n\n\t\tvar buttonOpts = {\n\t\t\tsetClass: 'align-center soft-half--left',\n\t\t\tlastButtonClass: 'push--top',\n\t\t\tfirstButtonClass: 'btn--primary push--top'\n\t\t};\n\n\t\tAE.ui.dialog.launch({\n\t\t\ttitleBar: true,\n\t\t\tid: 'duplicateWarningUpdate',\n\t\t\tdialogClass: 'top-dialog',\n\t\t\tcontent: buildDuplicateAcctMarkup($msg),\n\t\t\tbuttons: oButtons,\n\t\t\tapplyUI: true,\n\t\t\tbuttonOpts: buttonOpts,\n\t\t\twidth: ($(window).width() > 600) ? 500 : '70%'\n\t\t});\n\n\t\tfunction buildDuplicateAcctMarkup($msg) {\n\t\t\tvar docFrag = $(document.createDocumentFragment());\n\t\t\tdocFrag.append($(document.createElement('div')).append($msg));\n\n\t\t\treturn docFrag;\n\t\t}\n\t},\n\tdeleteCCWarning:function(cardId) {\n\t\tvar oButtons = {}; // Preparing the Object ahead of the dialog operation allows for Dynamic Button name/text\n\t\toButtons[AEdata.account.oStoredPaymentLang.button_delete] = function() {\n\t\t\tAPP.deletePaymentOption(cardId);\n\t\t\tAE.ui.dialog.close();\n\t\t};\n\n\t\toButtons[AEdata.account.oStoredPaymentLang.button_cancel] = function() {\n\t\t\tAE.ui.dialog.close();\n\t\t};\n\n\t\tvar buttonOpts = {\n\t\t\tsetClass: 'align-center soft-half--left',\n\t\t\tlastButtonClass: 'push--top',\n\t\t\tfirstButtonClass: 'btn--primary push--top'\n\t\t};\n\n\t\tAE.ui.dialog.launch({\n\t\t\ttitleBar: true,\n\t\t\tid: 'deleteWarning',\n\t\t\tdialogClass: 'top-dialog',\n\t\t\tcontent: buildDeleteWarnMarkup(cardId),\n\t\t\tbuttons: oButtons,\n\t\t\tapplyUI: true,\n\t\t\tbuttonOpts: buttonOpts,\n\t\t\twidth: ($(window).width() > 600) ? 500 : '70%'\n\t\t});\n\n\t\tfunction buildDeleteWarnMarkup(cardId) {\n\t\t\t\n\t\t\tvar cardDetails = _.findWhere(AEdata.CARDS, {CARDID: cardId});\n\t\t\tcardDetails.cardTypeDisplay = (AEdata.oCClogos[cardDetails.CARDTYPE.toLowerCase()]) ? '' : '' + cardDetails.CARDTYPE + ' ';\n\t\t\tcardDetails.cardLast4 = '' + cardDetails.LAST4 + ' ';\n\t\t\tcardDetails.cardExp = '' + cardDetails.EXP + ' ';\n\t\t\t//show logo if we have one, otherwise card type text\n\t\t\tvar modalCardSummary = AEdata.account.oStoredPaymentLang.txt_card_summary.replace('##cardtype##',cardDetails.cardTypeDisplay);\n\t\t\tmodalCardSummary = modalCardSummary.replace('##last4##',cardDetails.cardLast4);\n\t\t\tmodalCardSummary = modalCardSummary.replace('##expdate##',cardDetails.cardExp);\n\t\n\t\t\tvar docFrag = $(document.createDocumentFragment());\n\t\t\tdocFrag.append($(document.createElement('h3')).append(AEdata.account.oStoredPaymentLang.confirm_delete_card_header));\n\t\t\tdocFrag.append('
' + $currEleVal + '
';\n\t\t\t\t\t\t\t\t$error_ele = APP.getErrorEle($formId, $currEle);\n\t\t\t\t\t\n\t\t\t\t\t\t\t\tif($error_ele){$currEle_curr_val = $($error_ele).html();}\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t//only add error text if not already there. keeps screen from shimmying\n\t\t\t\t\t\t\t\tif($currEle_curr_val && $currEle_curr_val.length > 0 && ($currEle_curr_val == $currEleVal)){\n\t\t\t\t\t\t\t\t\t$do_nothing = true;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\telse{\n\t\t\t\t\t\t\t\t\t$do_nothing = false;\n\t\t\t\t\t\t\t\t}\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tif(!$do_nothing && $currEleVal){\n\t\t\t\t\t\t\t\t\t\tstrSingle = '' + $currEleVal + '
';\n\t\t\t\t\t\t\t\t\t\t//APP.setHTML($error_ele, $strSingle);\n\t\t\t\t\t\t\t\t\t\t$($error_ele).html($strSingle);\n\t\t\t\t\t\t\t\t\t\tAPP.addInvalidClass($formId,$currEle);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\telse if(!$do_nothing){\n\t\t\t\t\t\t\t\t\t\t$($error_ele).html('');\n\t\t\t\t\t\t\t\t\t\tAPP.addValidClass($formId,$currEle);\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t//}\n\t\t\t\t\t\t}\n\t\t\t\t\t}//end data loop\n\n\t\t\t\t\tAE.forms.removeSpinGear($Target);\n\t\t\t\t\t$($Target).prop('disabled', false);\n\n\t\t\t\t\tif(!$hasErrors && !$fieldToCheck){\n\t\t\t\t\t \t//$('#submit_password_save_button').prop('disabled', false);\n\t\t\t\t\t \t$(\"div.login_container\").removeClass('visuallyhidden--lap');\n\t\t\t\t\t \t$(\"div.login_container\").removeClass('visuallyhidden--palm');\n\t\t\t\t\t}\n\t },//end success\n\t error: function (/*xhr, ajaxOptions, thrownError*/) {\n //console.log(xhr.status);\n // console.log(thrownError);\n }\n \t\t});\n\t},\n\taddUpdateSalesforce: function (formVals) {\n\t\tvar cfc = '/plugins/ae3/lib/Member3.cfc?method=handleSalesforce';\n\t\t\t$.ajax({\n\t\t\t\ttype: 'POST',\n\t\t\t\turl: cfc,\n\t\t\t\tdata: formVals,\n\t\t\t\tdataType: 'json',\n\t\t\t\tsuccess: function(result){\n\t\t\t\t\t\t\t\n\t\t\t\t },\n\t\t\t\t error: function (/*xhr, ajaxOptions, thrownError*/) {\n //console.log(xhr.status);\n //console.log(thrownError);\n }\n\t\t\t\t\n\t\t\t});\n\t},\n\n\thandleSalesforceLogin:function(){\n\t\t\tvar cfc = '/plugins/ae3/lib/Member3.cfc?method=handleSalesforce_Login';\n\t\t\t$.ajax({\n\t\t\t\ttype: 'POST',\n\t\t\t\turl: cfc,\n\t\t\t\tsuccess: function(result){\n\t\t\t\t\t//console.log('handleSalesforceLogin',result);\n\t\t\t\t},\n\t\t\t\terror: function (/*xhr, ajaxOptions, thrownError*/) {\n // console.log(xhr.status);\n // console.log(thrownError);\n }\n\t\t\t\t\n\t\t\t});\n\t},\n\n\tsubmitAndCheckMemberAccountForm: function ($formId, $target, fieldToCheck) {\n\t\t\tvar cfc = APP.props.$ObjMember + '?method=checkAndSubmitAccountFormRemote';\n\t\t\tvar $formAction = $('#' + $formId + ' input[name=form_action]').val();\n\t\t\tvar $hasErrors = false;\n\t\t\tvar $currEle = '';\n\t\t\tvar $error_ele = '';\n\t\t\tvar $currEleVal = '';\n\t\t\tvar $currEle_curr_val = 0;\n\t\t\tvar $do_nothing = false;\n\t\t\tvar $formVals = $('#' + $formId).serialize();\n\t\t\tvar $ele_guardian = '';\n\t\t\tAPP.setHTML('duplicateMemberMsg', '');\t\n\t\t\t//for single field check, on blur we only want to check that one field. indicated by non blank formField value\n\t\t\tif(fieldToCheck){$formVals = $formVals + '&fieldToCheck=' + encodeURIComponent(fieldToCheck);}\n\n\t\t\t\t$.ajax({\n\t\t\t type: 'POST',\n\t\t\t dataType: 'JSON',\n\t\t\t cache: false,\n\t\t\t url: cfc,\n\t\t\t data: $formVals,\n\t\t\t success: function(result){\t\n\t\t\t\t\t\t\tfor (var i = 0, len = result.length; i < len; i++) {\n\t\t\t\t\t\t\t\t$currEle = result[i][0];\n\t\t\t\t\t\t\t\t$currEleVal = result[i][1];\n\t\t\t\t\t\t\t\t$currEle_curr_val = '';\t\n\t\t\t\t\t\t\t\t$do_nothing = false;\n\t\t\t\t\t\t\t\tformvals = $formVals;\n\n\t\t\t\t\t\t\t\t$error_ele = APP.getErrorEle($formId, $currEle);\t\n\t\t\t\t\t\t\t\t$ele_guardian = APP.getGuardianErrorEle($formId,$currEle);\n\t\t\t\t\t\t\t\t$ele_guardian = $(\"span#\" + $ele_guardian);\n\t\t\t\t\t\t\t\tif(!$currEleVal){\n\t\t\t\t\t\t\t\t\tAPP.removeInvalidClass($formId,$currEle);\n\t\t\t\t\t\t\t\t\t$($error_ele).html('');\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\telse{\n\t\t\t\t\t\t\t\t\t$hasErrors = true;\n\t\t\t\t\t\t\t\t\t$currEle_curr_val = $($error_ele).html();\n\t\t\t\t\t\t\t\t\t//only add error text if not already there or different than current messge. keeps screen from shimmying\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tif($currEle_curr_val.length > 0 && ($currEle_curr_val == $currEleVal)){\n\t\t\t\t\t\t\t\t\t\t$do_nothing = true;\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\tif($ele_guardian){\n\t\t\t\t\t\t\t\t\t\tif($ele_guardian.val() == $currEleVal){\n\t\t\t\t\t\t\t\t\t\t\t$do_nothing = true;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\telse{APP.removeGuardianError($formId,$currEle);}\n\t\t\t\t\t\t\t\t\t}\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tif(!$do_nothing){\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t$($error_ele ).html($currEleVal);\n\t\t\t\t\t\t\t\t\t\tAPP.addInvalidClass($formId,$currEle);\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t}//end for loop\n\n\t\t\t\t\t\t\tif($hasErrors ){\n\t\t\t\t\t\t\t\tAE.forms.removeSpinGear($target);\n\t\t\t\t\t\t\t\t$($target).attr('disabled', false);\n\t\t\t\t\t\t\t\tAPP.scrollToErrors($formId,$target);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse{\n\t\t\t\t\t\t\t\tif($formAction == 'account_update'){\n\t\t\t\t\t\t\t\t\tif(!fieldToCheck){\n\t\t\t\t\t\t\t\t\t\tAPP.addUpdateSalesforce($formVals);\n\t\t\t\t\t\t\t\t\t\tAPP.loadAccountInformation(true);\n\t\t\t\t\t\t\t\t\t\tAE.forms.removeSpinGear($target);\n\t\t\t\t\t\t\t\t\t\t$($target).attr('disabled', false);\n\t\t\t\t\t\t\t\t\t\t//$($target).prop('disabled', false);\n\t\t\t\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\telse if($formAction == 'account_save'){\n\t\t\t\t\t\t\t\t\tif(!fieldToCheck){\n\t\t\t\t\t\t\t\t\t\t//WEBAE3-6285 start\n\t\t\t\t\t\t\t\t\t\tformvalsDes = APP.deparam(formvals);\n\t\t\t\t\t\t\t\t\t\tif(typeof formvalsDes.member_emaillist == \"undefined\"){ \n\t\t\t\t\t\t\t\t\t\t\tlocalStorage.setItem(\"aeShowSubscribe\", true);//trigger New Modal to spawn when unsubscribed user logs in except the following pages\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t//WEBAE3-6285 END\n\t\t\t\t\t\t\t\t\t\t$('#member_signup').submit();\n\t\t\t\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\telse{\n\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t},//end success\t\t\t\t\t\n\n \t\t\t\t\t\terror: function (/*xhr, ajaxOptions, thrownError*/) {\n \t\t \t// console.log(xhr.status);\n \t\t\t// console.log(thrownError);\n \t\t}\n\t\t\t\t});//end ajax\n\t\t\t//}\t\t\t\t\t\n\t},\n\tshowDobClear: function () {\n\t\t$('.ui-state-default,.ui-datepicker-title,.ui-datepicker-prev,.ui-datepicker-next').click(function(){\n\t\t\t$('span.ui-datepicker-clear-input').removeClass('visuallyhidden');\n\t\t})\n\t},\n\tshowHide: function (show, hide) {\n\t\t\t$('#' + hide).addClass('visuallyhidden');\n\t\t\t$('#' + show).removeClass('visuallyhidden');\n\t},\n\thideShow: function (hide,show) {\n\t\t\t$('#' + hide).addClass('visuallyhidden');\n\t\t\t$('#' + show).removeClass('visuallyhidden');\n\t},\n\tshowEle: function (ele) {\n\t\t\treturn $('#' + ele).removeClass('visuallyhidden');\n\t},\n\thideEle: function (ele) {\n\t\t\treturn $('#' + ele).addClass('visuallyhidden');\n\t},\n\tsetHTML: function (ele, str) {\n\t\t$('#' + ele).html(str);\n\t},\n\tcheckIfMobile: function () {\n\t\tvar isMobile = false; //initiate as false\n\t\t// device detection\n\t\t\tif(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|ipad|iris|kindle|Android|Silk|lge |maemo|midp|mmp|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino/i.test(navigator.userAgent) \n\t\t\t|| /1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i.test(navigator.userAgent.substr(0,4))) { \n\t\t\tisMobile = true;\n\t\t};\n\t\treturn isMobile\n\t},\n\tgetErrorEle: function ($formId, $ele) {\n\t\tvar $error_ele = 'form#' + $formId + ' span.errorTxt-' + $ele;\n\t\treturn $error_ele;\n\n\t},\n\tgetGuardianErrorEle: function ($formId, $ele) {\n\t\tvar $eleGuardian = 'error-message-' + $formId + '-' + $ele;\n\t\treturn $eleGuardian;\n\t},\n\tremoveGuardianError:function($formId,$ele){\n\t\tvar $eleGuardian = 'error-message-' + $formId + '-' + $ele;\n\t\t$eleGuardian = 'span.ui-error-message#' + $eleGuardian;\n\t\t$eleGuardian = $($eleGuardian);\n\t\tif($eleGuardian){$($eleGuardian).remove();}\n\t},\n\tclearServerError:function($formId,$ele){\n\t\tvar $clear_ele = 'errorTxt-' + $ele;\n\t\t$clear_ele = 'span.ui-error-message.' + $clear_ele;\n\t\t$clear_ele = $($clear_ele);\n\t\tif($clear_ele){$($clear_ele).html('');}\n\t},\n\tcheckBlank:function($formId){\n\t\tvar empty = false;\n\t\tvar $form = document.querySelector('#' + $formId);\n\t\tvar $flds = $form.querySelectorAll('*[required]');\n\n\t\tvar i;\n\t\tfor (i = 0; i < $flds.length; i++) {\n\t\n\t\t $isVisible = !$flds[i].parentNode.classList.contains('visuallyhidden');\n\n\t\t if($flds[i].value.trim() == '' && $isVisible ){ \n\n\t\t \tif(APP.getErrorEle($formId, $flds[i].name) && !$flds[i].classList.contains('validatePassword')){\n\t\t \t\t$ele = $('#' + $formId + ' input[name=' + $flds[i].name + ']');\n\t\t \t\t$error_ele = $(APP.getErrorEle($formId, $flds[i].name));\n\t\t \t\t$error_ele_guardian = APP.getGuardianErrorEle($formId, $flds[i].name);\n\t\t \t\t$error_ele_guardian = $('span#' + $error_ele_guardian);\n\t\t \t\t$errorMess1 = $flds[i].getAttribute('data-error-message');\n\t\t \t\t$errorMess2 = $flds[i].getAttribute('data-empty-message');\n\t\t \t\t$errorMess = (!$errorMess2) ? $errorMess1 : $errorMess2;\t \t\n\n\t\t \t\tif($error_ele_guardian.length != 0){\n\t\t \t\t\t$($error_ele).html('');\n\t\t \t\t}\n\t\t \t\telse if($error_ele.length == 0 && $error_ele_guardian.length == 0 ){\n\t\t \t\t\t$ele.after(' '); \t\n\t\t \t\t }\n\t\t \t\t// else{\n\t\t \t\t// \t$($error_ele).html($errorMess);\t\t \t\t\n\t\t \t\t// }\n\t\t \t}\n\t\t \t$flds[i].parentElement.classList.add('ui-state-invalid');\n\t\t \tempty = true;\n\t\t }\n\t\t}\n\t\t//check if state required\n\t\tvar $checkState = $('#' + $formId + ' select.state--select:visible').parent().parent('.required');\n\t\tif($checkState.length != 0){\n\t\t\t$eleState = $('#' + $formId + ' select.state--select:visible');\n\t\t\tif($($eleState ).val() == ''){\n\t\t\t\t$($($eleState).parent()).addClass('ui-state-invalid');\n\t\t\t}\n\t\t}\n\t\t\t\t\n\t\treturn empty;\n\t},\n\tisTwoCol: function(){\n\t var isTwoCol = false; \n\t if($(window).width() > 1023){isTwoCol = true;}\n\n\t\treturn isTwoCol;\n\n\t},\n\n\tvalidatePwdLegacy:function($str){\n\t var pwd = {\n\t \tvalidated: true,\n\t\t\tpwd_length: true\t\t\n\t };\t\n\t\t\tif ($str.length < 8 ) {\n\t\t\t pwd.validated = false;\n\t\t\t pwd.pwd_length = false;\n\t\t\t};\n\t\t\tif ($str.length > 16 ) {\n\t\t\t\tpwd.validated = false;\n\t\t\t\tpwd.pwd_length = false;\n\t\t\t }\t\t\t\t\t\t\n\t\treturn pwd;\n\t},\n\n\tvalidatePwd:function($str){\n\t var pwd = {\n\t \tvalidated: true,\n\t\t\tpwd_length: true,\n\t\t\tpwd_number: true,\n\t\t\tpwd_special: true,\n\t\t\tpwd_upper: true,\n\t\t\tpwd_lower: true\n\t };\n\n\t if($str && $str.length!=0){\n\t\t\t//validate lower\n\t\t\tif (!$str.match(/[a-z]/) ) {\n\t\t\t pwd.validated = false;\n\t\t\t pwd.pwd_lower = false;\n\t\t\t}\n\n\t\t\t//validate capital letter\n\t\t\tif (!$str.match(/[A-Z]/) ) {\n\t\t\t pwd.validated = false;\n\t\t\t pwd.pwd_upper = false;\n\t\t\t}\n\n\t\t\t//validate number\n\t\t\tif (!$str.match(/\\d/) ) {\n\t\t\t pwd.validated = false;\n\t\t\t pwd.pwd_number = false;\n\t\t\t}\n\t\t\t// validate length greater than 8\n\t\t\tif ($str.length < 8) {\n\t\t\t pwd.validated = false;\n\t\t\t pwd.pwd_length = false;\n\t\t\t}\n\t\t\t// validate length less than 16\n\t\t\tif ($str.length > 16) {\n\t\t\t\tpwd.validated = false;\n\t\t\t\tpwd.pwd_length = false;\n\t\t\t }\n\n\t\t\tif (!$str.match(/[!=@#$%^&*-_\\+\\(\\)?<>\\.:;\"'`~\\|\\{\\}\\[\\]\\\\\\/]/) ) {\n\t\t\t pwd.validated = false;\n\t\t\t pwd.pwd_special = false;\n\t\t\t}\n\t\t\tif (!$str.match( /[!@#$%^&*()_=\\[\\]{};':\"\\\\|,.<>\\/?+-]/) ) {\n\t\t\t pwd.validated = false;\n\t\t\t pwd.pwd_special = false;\n\t\t\t}\n\t\t}\n\t\telse{\n\n\t \t\tpwd.validated = false;\n\t\t\tpwd.pwd_lower = false;\n\t\t\tpwd.pwd_upper = false;\n\t\t\tpwd.pwd_number = false;\n\t\t\tpwd.pwd_length = false;\n\t\t\tpwd.pwd_special = false;\n\t\t}\n\n\t\treturn pwd;\n\t},\n\treadCookie:function($name){\n\t var nameEQ = $name + \"=\";\n\t var ca = document.cookie.split(';');\n\t for(var i=0;i < ca.length;i++) {\n\t var c = ca[i];\n\t while (c.charAt(0)==' ') c = c.substring(1,c.length);\n\t if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);\n\t }\n\t return null;\n\t},\n\tgetPayOptions:function(){\n\t\t/*\n\t\tgetPayOptions: GET - returns array of all payment options\n\t\t*/ \n\t\tvar cfc = APP.props.$ObjMember + '?method=getPayOptions';\n\n\t\t$.ajax({\n\t\t\ttype: 'GET',\n\t\t\turl: cfc,\n\t\t\tdata: {remoteId: AEdata.myRemoteId},\n\t\t\tdataType: 'json',\n\t\t\tsuccess: function(result){\n\t\t\t\tif(result.CARDS){\n\t\t\t\t\tAEdata.CARDS = [];//make sure array is empty before adding cards\n\t\t\t\t\tAEdata.CARDS = result.CARDS;\n\t\t\t\t\tAPP.showCurrentCards();\n\t\t\t\t}\n\t\t\t},\n\t\t\terror: function (/*xhr, ajaxOptions, thrownError*/) {\n\t\t\t\t// console.log(xhr.status);\n\t\t\t\t// console.log(thrownError);\n\t\t\t\t}\n\t\t});\n\t},\n\tgetAddCardWidget:function(){\n\t\t/*\n\t\tgetAddCard: GET - Returns URL for hosted checkout widget\n\t\t*/ \n\t\tvar cfc = APP.props.$ObjMember + '?method=getAddCard';\n\n\t\tif(AEdata.account.ccWidgetUrl && AEdata.account.ccWidgetUrl !== 'expired') {\n\t\t\t//we already requested a widget so use it\n\t\t\tAPP.showAddCard(AEdata.account.ccWidgetUrl);\n\n\t\t} else {\n\t\t\t$.ajax({\n\t\t\t\ttype: 'GET',\n\t\t\t\turl: cfc,\n\t\t\t\tdata: {remoteId: AEdata.myRemoteId},\n\t\t\t\tdataType: 'json',\n\t\t\t\tsuccess: function(result){\n\t\t\t\t\tif(result.SUCCESS){\n\t\t\t\t\t\tAEdata.account.ccWidgetUrl = result.URL;//save URL in this browser request state for toggling\n\t\t\t\t\t\tAPP.showAddCard(AEdata.account.ccWidgetUrl);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tAPP.showAddCardWidgetFail();\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\terror: function (/*xhr, ajaxOptions, thrownError*/) {\n\t\t\t\t\t// console.log(xhr.status);\n\t\t\t\t\t// console.log(thrownError);\n\t\t\t\t\t}\n\t\t\t});\n\t\t}\n\t},\n\ttoggleAddCard:function(){\n\t\tif ($(\".add_card_container\").hasClass('visuallyhidden')) {\n\t\t\tAPP.showAddCardUI();\n\t\t} else { \n\t\t\tAPP.hideAddCardUI();\n\t\t}\n\t},\n\tshowAddCardUI:function(){\n\t\t//make for all AddCard UI elements visible\n\t\tif($('.add_card_container').hasClass('visuallyhidden')) {\n\t\t\t$(\".add_card_container\").removeClass('visuallyhidden');\n\t\t}\n\t\tif($('#mycc_loader').hasClass('visuallyhidden')) {\n\t\t\t$('#mycc_loader').removeClass('visuallyhidden');\n\t\t}\n\t\tif(!$('#noCCwidget').hasClass('visuallyhidden')) {\n\t\t\t$('#noCCwidget').addClass('visuallyhidden');//only an error retrieving widget will display this id\n\t\t}\n\t\t$(\".addNewCCToggle\").text('-');\n},\n\thideAddCardUI:function(){\n\t\t//hide all AddCard UI elements\n\t\tif(!$('.add_card_container').hasClass('visuallyhidden')) {\n\t\t\t$(\".add_card_container\").addClass('visuallyhidden');\n\t\t}\n\t\tif($('#mycc_loader').hasClass('visuallyhidden')) {\n\t\t\t$('#mycc_loader').removeClass('visuallyhidden');\n\t\t}\n\t\tif(!$('#noCCwidget').hasClass('visuallyhidden')) {\n\t\t\t$('#noCCwidget').addClass('visuallyhidden');//only an error retrieving widget will display this id\n\t\t}\n\t\tif(!$('#hp_cc').hasClass('visuallyhidden')) {\n\t\t\t$('#hp_cc').addClass('visuallyhidden');\n\t\t}\n\t\t$(\".addNewCCToggle\").text('+');\n\n\t},\n\thideMyCCLoader:function(){\n\t\t$('#mycc_loader').addClass('visuallyhidden');\n\t},\n\tshowAddCard:function(widgetUrl){\n\t\t//make sure iframe is hidden until URL loads (or reloads on toggling of Add New or whole section)\n\t\tif(!$('#ccWidget').hasClass('visuallyhidden')) {\n\t\t\t$('#ccWidget').addClass('visuallyhidden');\n\t\t}\n\t\tif (!$(\"#noCCwidget\").hasClass('visuallyhidden')) {\n\t\t\t//we got widget URL so make sure this message isn't showing\n\t\t\t$(\"#noCCwidget\").addClass('visuallyhidden');\n\t\t}\n\t\tdocument.getElementById('ccWidget').src = widgetUrl;\n\t\tdocument.getElementById('ccWidget').addEventListener(\"load\", function() {\n\t\t\tAPP.hideMyCCLoader()\n\t\t\tdocument.getElementById('hp_cc').classList.remove('visuallyhidden');\n\t\t\tdocument.getElementById('ccWidget').classList.remove('visuallyhidden');\n\t\t\t});\n\t},\n\tshowAddCardWidgetFail:function(widgetUrl){\n\t\tAPP.hideMyCCLoader();\n\t\t//show a failure message\n\t\tdocument.getElementById('noCCwidget').innerHTML = '' + AEdata.account.oStoredPaymentLang.no_saved_payments + '
';\n\t\t\t$(\"#editCCControl\").append(newCardBlock);\n\t\t}\n\t\t$(\"#editCCControl\").removeClass('visuallyhidden');\n\t\t//if addcard form is visible, hide it\n\t\tif(!$(\".add_card_container\").hasClass('visuallyhidden')){\n\t\t\t$(\".add_card_container\").addClass('visuallyhidden');\n\t\t}\n\n\t},\n\tdeletePaymentOption:function(cardId){\n\t\t/*\n\t\tdeletePaymentOption: GET - returns array of all payment options\n\t\t*/ \n\t\tvar cfc = APP.props.$ObjMember + '?method=deleteStoredPayment';\n\t\t$.ajax({\n\t\t\ttype: 'GET',\n\t\t\turl: cfc,\n\t\t\tdata: {remoteId: AEdata.myRemoteId, paymentId: cardId},\n\t\t\tdataType: 'json',\n\t\t\tsuccess: function(result){\n\t\t\t\tif(result.SUCCESS){\n\t\t\t\t\t$(\"#editCCControl\").addClass('visuallyhidden');//hide cards before refreshing\n\t\t\t\t\tAPP.getPayOptions();\n\t\t\t\t}\n\t\t\t},\n\t\t\terror: function (xhr, ajaxOptions, thrownError) {\n\t\t\t\t// console.log(xhr.status);\n\t\t\t\t// console.log(thrownError);\n\t\t\t\t}\n\t\t});\n\t},\n\n\t/*\tLAZY LOADING RESERVATION SECTION FUNCTIONS - WEBAE3-5726\t*/\n\tloadAccountReservations:function() {\n\t\tif(APP.props.$isInMemberAccount && APP.props.$isLoggedIn){\n\t\t\tvar $resLoadSpinner = $('#loaderMemberReservations');\n\t\t\tif($resLoadSpinner.length){\n\t\t\t\tif(AEdata.hasOwnProperty('stMemberVoucherInfo') && \n\t\t\t\t\t_.isObject(AEdata.stMemberVoucherInfo) && \n\t\t\t\t\t!_.isEmpty(AEdata.stMemberVoucherInfo)\n\t\t\t\t){\n\t\t\t\t\tAPP.renderAccountReservations(AEdata.stMemberVoucherInfo);\n\t\t\t\t} else {\n\t\t\t\t\tAEdata.stMemberVoucherLang = AEdata.stMemberVoucherLang || {};\n\t\t\t\t\tvar cfc = APP.props.$ObjMember + '?method=showAccountReservations';\n\t\t\t\t\tvar lookupPage = AEdata.stMemberVoucherLang.LOOKUP_URL || 'LOOKUP_URL';\n\t\t\t\t\t$.ajax({\n\t\t\t\t\t\ttype: 'POST',\n\t\t\t\t\t\turl: cfc,\n\t\t\t\t\t\tdataType: 'json',\n\t\t\t\t\t\tdata: {\n\t\t\t\t\t\t\tlookupPage\n\t\t\t\t\t\t},\n\t\t\t\t\t\tsuccess: function(result){\n\t\t\t\t\t\t\tif(_.isObject(result) && !result.isEmpty()){\n\t\t\t\t\t\t\t\tAPP.renderAccountReservations(result); \n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t},\n\t\t\t\t\t\terror: function (/*xhr, ajaxOptions, thrownError*/) {\n\t\t\t\t\t\t\tAPP.renderAccountReservations({voucherError:true});\n\t\t\t\t\t\t\t// console.log(xhr.status);\n\t\t\t\t\t\t\t// console.log(thrownError);\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\trenderAccountReservations:function(objMemberVoucherInfo) {\n\t\tAEdata.stMemberVoucherLang = AEdata.stMemberVoucherLang || {};\n\t\tvar $dfAccountReservations = $(document.createDocumentFragment());\n\t\tif(objMemberVoucherInfo.hasOwnProperty('voucherError') &&\n\t\t\tobjMemberVoucherInfo.voucherError === true\n\t\t){\n\t\t\t$dfAccountReservations.append(APP.renderAccountReservationLookupError());\n\t\t} else if(objMemberVoucherInfo.hasOwnProperty('vouchers') && \n\t\t\t_.isObject(objMemberVoucherInfo.vouchers) && \n\t\t\t!_.isEmpty(objMemberVoucherInfo.vouchers) &&\n\t\t\tobjMemberVoucherInfo.vouchers.hasOwnProperty('current') &&\n\t\t\tobjMemberVoucherInfo.vouchers.hasOwnProperty('past') &&\n\t\t\t_.isArray(objMemberVoucherInfo.vouchers.current) &&\n\t\t\t_.isArray(objMemberVoucherInfo.vouchers.past)\n\t\t){\n\t\t\t['current','past'].forEach(function(vouchKey) {\n\t\t\t\tvar theseVouchers = objMemberVoucherInfo.vouchers[vouchKey];\n\t\t\t\tvar $thisGrid = $(document.createElement('div')).addClass('grid');\n\t\t\t\tvar $thisGridItem = $(document.createElement('div')).addClass('grid__item one-whole palm-one-whole soft--left');\n\t\t\t\tvar classKey = 'curr';\n\t\t\t\tvar langKey = 'CURRENT';\n\t\t\t\tif(vouchKey === 'past'){\n\t\t\t\t\t$thisGridItem.addClass('push-half--top');\n\t\t\t\t\tclassKey = 'past';\n\t\t\t\t\tlangKey = 'PAST';\n\t\t\t\t} else {\n\t\t\t\t\tif(typeof AEdata.stMemberVoucherLang.HEADER_RESERVATIONS_CONTENT === 'string' && AEdata.stMemberVoucherLang.HEADER_RESERVATIONS_CONTENT !== ''){\n\t\t\t\t\t\t$thisGridItem.append(\n\t\t\t\t\t\t\t$(document.createElement('p'))\n\t\t\t\t\t\t\t.append(AEdata.stMemberVoucherLang.HEADER_RESERVATIONS_CONTENT)\n\t\t\t\t\t\t);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t$thisGridItem.append(\n\t\t\t\t\t$(document.createElement('h3'))\n\t\t\t\t\t.append(AEdata.stMemberVoucherLang['HEADER_'+langKey] || 'HEADER_'+langKey)\n\t\t\t\t);\n\t\t\t\tif(_.isEmpty(theseVouchers)){\n\t\t\t\t\t$thisGridItem.append(\n\t\t\t\t\t\tAEdata.stMemberVoucherLang['NO_'+langKey+'_MSG'] || 'NO_'+langKey+'_MSG'\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t\tvar $thisTable = $(document.createElement('table')).addClass('memres--'+classKey+'--reservations table--striped');\n\t\t\t\tvar $labelRow = $(document.createElement('tr')).addClass('cardetails-smallprint memres_row');\n\t\t\t\t$labelRow.append(\n\t\t\t\t\t$(document.createElement('td'))\n\t\t\t\t\t.addClass('memres_puCalLabel')\n\t\t\t\t\t.append(\n\t\t\t\t\t\t$(document.createElement('label'))\n\t\t\t\t\t\t.append(AEdata.stMemberVoucherLang.PUDATE_LABEL || 'PUDATE_LABEL')\n\t\t\t\t\t)\n\t\t\t\t);\n\t\t\t\t$labelRow.append(\n\t\t\t\t\t$(document.createElement('td'))\n\t\t\t\t\t.addClass('memres_vouchLabel')\n\t\t\t\t\t.append(\n\t\t\t\t\t\t$(document.createElement('label'))\n\t\t\t\t\t\t.append(AEdata.stMemberVoucherLang.VOUCHER_LABEL || 'VOUCHER_LABEL')\n\t\t\t\t\t)\n\t\t\t\t);\n\t\t\t\t$labelRow.append(\n\t\t\t\t\t$(document.createElement('td'))\n\t\t\t\t\t.addClass('memres_puLocLabel visuallyhidden--palm')\n\t\t\t\t\t.append(\n\t\t\t\t\t\t$(document.createElement('label'))\n\t\t\t\t\t\t.append(AEdata.stMemberVoucherLang.PULOC_LABEL || 'PULOC_LABEL')\n\t\t\t\t\t)\n\t\t\t\t);\n\t\t\t\t$labelRow.append(\n\t\t\t\t\t$(document.createElement('td'))\n\t\t\t\t\t.addClass('memres_statusLabel visuallyhidden--palm')\n\t\t\t\t\t.append(\n\t\t\t\t\t\t$(document.createElement('label'))\n\t\t\t\t\t\t.append(AEdata.stMemberVoucherLang.STATUS_LABEL || 'STATUS_LABEL')\n\t\t\t\t\t)\n\t\t\t\t);\n\t\t\t\t$labelRow.append(\n\t\t\t\t\t$(document.createElement('td'))\n\t\t\t\t\t.addClass('memres_action_label numerical')\n\t\t\t\t\t.append(\n\t\t\t\t\t\t$(document.createElement('label'))\n\t\t\t\t\t\t.append(' ')\n\t\t\t\t\t)\n\t\t\t\t);\n\t\t\t\t$thisTable.append($labelRow);\n\t\t\t\ttheseVouchers.forEach(function(thisVouch) {\n\t\t\t\t\tvar $thisRow = $(document.createElement('tr')).addClass('cardetails-smallprint');\n\t\t\t\t\t$thisRow.append(\n\t\t\t\t\t\t$(document.createElement('td'))\n\t\t\t\t\t\t.addClass('memres_puCalLabel')\n\t\t\t\t\t\t.append(thisVouch.DATE)\n\t\t\t\t\t);\n\t\t\t\t\t$thisRow.append(\n\t\t\t\t\t\t$(document.createElement('td'))\n\t\t\t\t\t\t.addClass('memres_vouchLabel')\n\t\t\t\t\t\t.append(thisVouch.VOUCHNUM)\n\t\t\t\t\t);\n\t\t\t\t\t$thisRow.append(\n\t\t\t\t\t\t$(document.createElement('td'))\n\t\t\t\t\t\t.addClass('memres_puLocLabel visuallyhidden--palm')\n\t\t\t\t\t\t.append(thisVouch.PICKUP)\n\t\t\t\t\t);\n\t\t\t\t\t$thisRow.append(\n\t\t\t\t\t\t$(document.createElement('td'))\n\t\t\t\t\t\t.addClass('memres_statusLabel visuallyhidden--palm')\n\t\t\t\t\t\t.append(thisVouch.STATUSDISPLAY)\n\t\t\t\t\t);\n\t\t\t\t\t\n\t\t\t\t\tvar $linkCell = $(document.createElement('td')).addClass('memres_action numerical');\n\t\t\t\t\tif(vouchKey === 'past'){\n\t\t\t\t\t\t$linkCell.append($(document.createElement('a'))\n\t\t\t\t\t\t\t.attr('href',thisVouch.URL)\n\t\t\t\t\t\t\t.append(AEdata.stMemberVoucherLang.VIEW_LINK || 'VIEW_LINK')\n\t\t\t\t\t\t);\n\t\t\t\t\t} else if(thisVouch.STATUS === 'D') {\n\t\t\t\t\t\t$linkCell.append($(document.createElement('a'))\n\t\t\t\t\t\t\t.attr('href',thisVouch.URL)\n\t\t\t\t\t\t\t.append(AEdata.stMemberVoucherLang.VIEW_LINK || 'VIEW_LINK')\n\t\t\t\t\t\t);\n\t\t\t\t\t} else {\n\t\t\t\t\t\t$linkCell.append($(document.createElement('a'))\n\t\t\t\t\t\t\t.attr('href',thisVouch.URL)\n\t\t\t\t\t\t\t.append($(document.createElement('span'))\n\t\t\t\t\t\t\t\t.addClass('visuallyhidden--desk visuallyhidden--desk-wide visuallyhidden--tablet visuallyhidden--lap')\n\t\t\t\t\t\t\t\t.append(AEdata.stMemberVoucherLang.VIEW_LINK || 'VIEW_LINK')\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t.append($(document.createElement('span'))\n\t\t\t\t\t\t\t\t.addClass('visuallyhidden--palm')\n\t\t\t\t\t\t\t\t.append(AEdata.stMemberVoucherLang.VIEW_LINK || 'VIEW_MODIFY_LINK')\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t);\n\t\t\t\t\t}\n\t\t\t\t\t$thisRow.append($linkCell);\n\t\t\t\t\t$thisTable.append($thisRow);\n\t\t\t\t});\n\t\t\t\t$thisGridItem.append($thisTable);\n\t\t\t\t$dfAccountReservations.append($thisGrid.append($thisGridItem));\n\t\t\t});\n\t\t} else {\n\t\t\t$dfAccountReservations.append(APP.renderAccountReservationLookupError());\n\t\t}\n\t\t$('#toggleeMemberReservations').html($dfAccountReservations);\n\t},\n\trenderAccountReservationLookupError:function(){\n\t\tAEdata.stMemberVoucherLang = AEdata.stMemberVoucherLang || {};\n\t\treturn $(document.createElement('div')).addClass('grid').append(\n\t\t\t$(document.createElement('div'))\n\t\t\t.addClass('grid__item one-whole palm-one-whole soft--left')\n\t\t\t.append(AEdata.stMemberVoucherLang.VOUCHER_LOOKUP_ERROR || 'VOUCHER_LOOKUP_ERROR')\n\t\t);\n\t}\n\t,\n\tdeparam: function (query) { //WEBAE3-6285 END cool little tool\n\t\tvar pairs, i, keyValuePair, key, value, map = {};\n\t\t// remove leading question mark if its there\n\t\tif (query.slice(0, 1) === '?') {\n\t\t\tquery = query.slice(1);\n\t\t}\n\t\tif (query !== '') {\n\t\t\tpairs = query.split('&');\n\t\t\tfor (i = 0; i < pairs.length; i += 1) {\n\t\t\t\tkeyValuePair = pairs[i].split('=');\n\t\t\t\tkey = decodeURIComponent(keyValuePair[0]);\n\t\t\t\tvalue = (keyValuePair.length > 1) ? decodeURIComponent(keyValuePair[1]) : undefined;\n\t\t\t\tmap[key] = value;\n\t\t\t}\n\t\t}\n\t\treturn map;\n\t}\n};\n\n\treturn APP;\n})();\n\n\n;var AE = AE || {}; /* Add to Base object or create it if it doesn't exist. */\n\nAE.modal = AE.modal || (function(){\n\t/*\n\tDEPENDENCIES: AE\n\t*/\n\t\tvar APP = {\n\t\tinit:function() {\n\t\t\tAPP.props = {\n\t\t\t\t$modalLink\t: $('a.open_modal_page'),\n\t\t\t\t$devheight \t: $(window).height(),\n\t\t\t\t$devWidth \t:$(window).width()\t\n\t\t\t};\n\n\t\t\tAPP.props.$modalLink.on('click', function(e){\n\t\t\t\te.preventDefault();\n\t\t\t\tvar $target = $(e.target);\n\t\t\t\tvar strUrl = $target.attr('data-url');\n\t\t\t\tAPP.openPageModal(strUrl);\n\t\t\t});\n\t\t\t\n\t\t}\n\t\t,\n\n\t\topenPageModal:function(strUrl) {\n\t\t\tvar currFontSize = $(\"html\").css('font-size');\n\t\t\t\n\t\t\tif(APP.props.$devWidth < 701){\n\t\t\t\t\tmwidth = .90*APP.props.$devWidth;\n\t\t\t\t\tmheight = .90*APP.props.$devheight;\n\t\t\t\t}\n\t\t\telse if(APP.props.$devWidth >700 && APP.props.$devWidth < 1000 ){\n\t\t\t\tmwidth = '550';\n\t\t\t\tmheight= '700';\n\n\t\t\t}\n\t\t\telse{\n\t\t\t\t\tmwidth = '650';\n\t\t\t\t\tmheight= '700';\n\t\t\t\t}\n\n \t\t\t $.post(strUrl, function(data){ \n\t\t $('#dialog-modal-page').html(data);\n\t\t $('#dialog-modal-page').dialog('open');\n\t\t }, \"html\");\n\n\t \t \t$(\"#dialog-modal-page\").dialog({\n\t\t resizable: false,\n\t\t autoOpen: false,\n\t\t modal: true,\n\t\t width:mwidth,\n\t\t height:mheight,\n\t\t \t\topen: function(){\n\t\t jQuery('.ui-widget-overlay').bind('click',function(){\n\t\t jQuery('#dialog-modal-page').dialog('close');\n\t\t })\n\t\t }\n\t\t }).css(\"font-size\",currFontSize );\n\t\t\n\t\t}\n\t};\n\treturn APP;\n})();\n \n;\r\nvar AE = AE || {}; /* Add to Base object or create it if it doesn't exist. */\r\n\r\nAE.customerService = AE.customerService || (function() {\r\n\t/* DEPENDENCIES: AE */\r\n\tvar APP = {\r\n\t\tinit: function() {\r\n\t\t\tAPP.props = {\r\n\t\t\t\t$customerServiceForm : $('#customerForm'),\r\n\t\t\t\t$serviceFormType : $('#customerForm').data('serviceformtype'),\r\n noEBSites: ['AUS', 'DAU', 'DNZ', 'NZL', 'DAP', 'GCR', 'RAU', 'RNZ', 'PEU'], // WEBAE3-6275 - hide excess refund and breakdown protection from certain customer service forms\r\n allowExcessBreakdown: true,\r\n\t\t\t\tsiteList : ['AEM','AOR','AUS','AUT','BEL','BFR','BRA','CHE','CHF','CHI','DAP','DAU','DEU','DNK','DNZ','ESL','ESP','EUR','FIN','FRA','GBR','GCR','HKG','HRV','IRL','ITA','NAL','NLD','NOR','NZL','PEU','POL','RAU','RNZ','RUS','SWE','TUR','TWN','ZAF','US','CA','CAE','KEM','URC','ERC','ATP'],\r\n formOnVoucher: $('body').is('#mybooking'),\r\n hasAltERFields: ['EU', 'GB', 'US', 'CA', 'AU', 'NZ'].includes($('#customerForm').data('serviceformorigin')) // Determines if site has special form fields for Excess Refund Inquiry Type\r\n\t\t\t};\r\n\r\n // WEBAE3-6275 - hide excess refund/breakdown protection fields if site matches\r\n for(var i=0; iIn order for websites to provide relevant information to its visitors, and cater their experience, websites may store and retrieve data from your web browser. This action is done in the form of cookies. Cookies are generally installed on your browser to be used by the same website at a later date to enhance your overall experience. Cookies may contain information about you, your device, your technical hardware, your preferences, and any other relevant information that will help in providing visitors with a more personalized visit.
The use of cookies is optional, and as Auto Europe takes privacy seriously, we provide you with an option not to use these during your visit. You can pick and choose what cookie types to accept and reject – however, by restricting some cookies, we may not be able to provide you with the full website experience, offer certain services and can even stop the website from working properly. Following is a more in-depth explanation of the cookies we use on our site.