(function() { function bxBootstrap() { var re = /bot|crawl|slurp|spider|mediapartners|headlesschrome|snap-prefetch|remotasks|woorank|uptime\.com|facebookexternalhit|facebookcatalog/i; if (re.test(navigator.userAgent) || navigator.userAgent == '') { return; } if (!(window.bouncex&&bouncex.website)) { var pushedData = []; if(window.bouncex && bouncex.push && bouncex.length){ pushedData = bouncex; } window.bouncex = {}; bouncex.pushedData = pushedData; bouncex.website = {"id":7395,"name":"Lane Bryant","cookie_name":"bounceClientVisit7395","domain":"lanebryant.com","ct":"fp_local_storage","ally":0,"ei":0,"tcjs":"","cjs":"","force_https":false,"waypoints":false,"content_width":900,"gai":"","swids":"","sd":0,"ljq":"auto","campaign_id":0,"is_preview":false,"aco":{"first_party_limit":"3500","local_storage":"1"},"cmp":{"gdpr":0,"gmp":0,"whitelist_check":0},"burls":[],"ple":false,"fbe":true,"ffs":"EMAILHASH_LOOKUP_SV_SVEMS","mas":2,"map":1,"gar":true,"ete":1,"ettm":false,"etjs":"/* ---------------------------- SHARED VARIABLES ---------------------------- */\n\nvar CART_COOKIE_KEY = 'dwanonymous_0f610f2df15b372ef7da1dfeeb9abeb8', // cookie replenishment\n CLEAN_URL = bouncex.utils.url.allowParams('q');\n\n/* --------------------------------- HELPERS -------------------------------- */\n\n/**\n * \n * @returns object - contains all necessary data for item events\n */\nfunction extractNumberIfGrp(str) {\n if (str.indexOf(\"grp_\") === 0) { // Check if the string starts with \"grp_\"\n var parts = str.split('_');\n if (parts.length >= 2) {\n return parts[1];\n }\n }\n return str; // Return null if it doesn't start with \"grp_\" or the format is wrong\n}\n\nfunction normalizeString(str) {\n if (typeof str !== 'string') {\n return ''; // Or handle non-string inputs as needed\n }\n return str.toLowerCase().replace(/[^a-z0-9]/g, '');\n}\n\nfunction getCategoryOrGlobalOptimized() {\n var category = window.pageData.productDetails.category;\n if (!category) {\n var breadcrumbText = jQuery('.breadcrumb-item a:not([href*=\"tel\"]):last').text().trim();\n category = breadcrumbText || '';\n }\n\n if (category.indexOf('DoNotUseForMerch') > -1) {\n return false;\n }\n\n if (typeof category === 'string' && /^\\d+(?:\\s*-\\s*\\d+)?$/.test(category)) {\n return \"Global\";\n } else if (typeof category === 'number' && Number.isInteger(category)) {\n return \"Global\";\n } else {\n var itemName = jQuery('h1.product-name').text().trim();\n if (normalizeString(category) === normalizeString(itemName)) {\n return \"Global\";\n }\n return category;\n }\n}\n\nfunction getItem() {\n return {\n id: extractNumberIfGrp(jQuery('.product-detail.product-wrapper').attr('data-masterpid')), /* evaluates unique item id */\n copy: jQuery('h1.product-name').text().trim(), /* evaluates item copy */\n category: getCategoryOrGlobalOptimized(), /* evaluates item category */\n url: CLEAN_URL,\n imageurl: bouncex.utils.url.allowParams('', jQuery('.pdp-main-image:first').attr('src')), /* evaluates item image */\n instock: jQuery('.add-to-cart:not(:disabled)').length > 0 || jQuery('.non-color-attribute:not(.unselectable)').length > 0 /* bool evaluates if item is in stock */\n };\n}\n\nfunction fireViewItem(id, groupId) {\n var pushItem = { 'item:id': id };\n\n if (groupId) {\n pushItem['item:itemgroupid'] = groupId;\n }\n bouncex.push(['view item', pushItem]);\n}\n\nfunction initializeItemEvents() {\n var item;\n\n bouncex.et.onTrue(\n function () {\n item = getItem();\n return !!item.id &&\n !!item.copy &&\n !!item.url &&\n !!item.imageurl;\n },\n function () {\n // if we are excluding pages in addition to gift cards, create a helper function\n if (item.url.indexOf('gift-card') > -1) {\n return;\n }\n if (!!item.category) {\n bouncex.push(['item', item]);\n }\n\n initializeSkuEvents(item.id);\n fireViewItem(item.id, item.id);\n },\n 10\n );\n}\n\n/* ------------------------------ SKU TRACKING ------------------------------ */\n\nfunction initializeSkuEvents(itemId, groupId) {\n var lastSkuFired,\n skuId;\n\n bouncex.et.onVarChange('item_sku', function (oldVal, newVal) {\n var stringSKU = newVal.toString();\n if (stringSKU && itemId && stringSKU !== itemId && stringSKU !== lastSkuFired) {\n lastSkuFired = stringSKU;\n\n bouncex.push([\n 'select_sku',\n {\n 'item:id': itemId,\n 'item:itemgroupid': itemId,\n 'item:feedid': stringSKU\n }\n ]);\n }\n });\n}\n\n/* ---------------------------- CATEGORY TRACKING --------------------------- */\n\nfunction getItemIdsCat() {\n var ids = [];\n\n jQuery('.item.product, .product, .overlay .quickview').each(function (i, e) {\n var id = jQuery(e).attr('tagg-root-id') || jQuery(e).attr('data-pid') || jQuery(e).attr('href');\n var regex = /_(\\d{6})_/g;\n var match = id.match(regex);\n\n if (match) {\n id = match[0].substring(1, match[0].length - 1);\n }\n\n if (id && ids.indexOf(id) < 0 && id.toLowerCase().indexOf('look') == -1) {\n ids.push(id);\n }\n });\n\n return ids.join(',');\n}\n\nfunction getCategoryObject() {\n return {\n // update URL to allow params if needed on a search page\n 'page:url': CLEAN_URL,\n 'items:ids': getItemIdsCat()\n };\n}\n\nfunction initializeCategoryEvents() {\n var categoryObj;\n\n bouncex.et.onTrue(\n function () {\n categoryObj = getCategoryObject();\n return !!categoryObj['items:ids'].length &&\n !!categoryObj['page:url'];\n },\n function () {\n bouncex.push(['view category', categoryObj]);\n\n bouncex.et.onVarChange('quickview_visible', function (oldVal, newVal) {\n var itemId = jQuery('.quickviewmodal .product-quickview').attr('data-pid');\n if (newVal && itemId) {\n fireViewItem(itemId, itemId);\n initializeSkuEvents(itemId);\n }\n });\n\n },\n 10\n );\n}\n\n/* ------------------------------- CART EVENTS ------------------------------ */\n\nfunction fireAddToCart(itemId) {\n bouncex.push([\n 'add to cart',\n {\n 'item:id': itemId\n }\n ]);\n // bouncex.setVar('cart', true);\n}\n\nfunction addToCart(event, xhr, settings) {\n if ((settings.url.indexOf('Cart-AddProduct') > -1 || settings.url.indexOf('ProductAdded') > -1) && settings.method === 'POST' && !xhr.responseJSON.error) {\n var data = settings.data,\n pid = bouncex.utils.url.getParam('pid', data);\n // replenCookie = bouncex.utils.url.getParam('csrf_token', data),\n // quantity = bouncex.utils.url.getParam('quantity', data)\n // cookie = bouncex.getBounceCookie(CART_COOKIE_KEY);\n\n if (!pid) {\n pid = bouncex.parseJSON(data).product_id;\n }\n\n if (bouncex.website.pts === \"category\") {\n var itemId = pid;\n pid = jQuery('#pdpCarousel' + itemId).parents('.product-quickview').attr('data-pid');\n }\n\n if (bouncex.website.pts === \"product\") {\n pid = extractNumberIfGrp(jQuery('.product-detail.product-wrapper').attr('data-masterpid'));\n }\n\n bouncex.setVar('cart', true);\n // var replenItem = {\n // pid: pid,\n // token: replenCookie,\n // quantity: quantity\n // };\n\n fireAddToCart(pid);\n // bouncex.push([\n // 'add to cart',\n // { 'item:id': pid, 'cart:token': replenCookie, 'item:quantity': quantity },\n // ]);\n }\n}\n\nfunction emptyCart() {\n if (bouncex.website.pts === \"cart\" && jQuery('.cart-empty:visible').length > 0 && bouncex.vars.cart) {\n bouncex.push(['empty_cart']);\n bouncex.setVar('cart', false);\n }\n\n bouncex.et.onVarChange('cart_empty', function (oldVal, newVal) {\n if (bouncex.vars.cart && newVal) {\n bouncex.push(['empty_cart']);\n bouncex.setVar('cart', false);\n }\n return;\n });\n}\n\n// function addToCart(pid, quantity, csrfToken) {\n// $.ajax({\n// url: \"https://www.lanebryant.com/on/demandware.store/Sites-LaneBryant-Site/default/Cart-AddProduct\",\n// method: \"POST\",\n// contentType: \"application/x-www-form-urlencoded; charset=UTF-8\",\n// dataType: \"json\",\n// data: $.param({\n// pid: pid,\n// quantity: quantity\n// }),\n// xhrFields: {\n// withCredentials: true\n// },\n// success: function(response) {\n// console.log(\"Product added to cart:\", response);\n// },\n// error: function(xhr, status, error) {\n// console.error(\"Error adding product to cart:\", status, error, xhr);\n// if (xhr.status === 302) {\n// console.log(\"Redirect detected. Check the Location header.\");\n// console.log(\"Redirect Location:\", xhr.getResponseHeader('Location'));\n// }\n// }\n// });\n// }\n\n\nfunction initializeCartEvents() {\n bouncex.et.cart.init({\n replenish: function () { },\n replenishmentType: 'single'\n });\n\n bouncex.et.on(bouncex.document, 'ajaxComplete.wknd', addToCart);\n\n emptyCart();\n}\n\n\n/* ------------------------------ USER TRACKING ----------------------------- */\n\nfunction initializeUserTracking() {\n if (!bouncex.vars.logged_in || !!bouncex.vars.logged_in_identified) {\n return;\n }\n\n var userEmail;\n\n bouncex.et.onTrue(\n function () {\n userEmail = bouncex.utils.getNestedProp('window.loyaltyData.customerEmail') || jQuery('li.email, #login-form-email.softlogin-email').first().text().trim(); /* string - evaluates user email address */\n return bouncex.utils.validate.email(userEmail);\n },\n function () {\n bouncex.push([\n 'user',\n {\n 'email': userEmail,\n 'source': 'LoggedIn'\n }\n ]);\n bouncex.setVar('logged_in_identified', true);\n },\n 5\n );\n}\n\n/* --------------------------- INITIALIZE TRACKING -------------------------- */\n\nfunction isValidDomain() {\n return CLEAN_URL.indexOf('www.lanebryant.com') > -1;\n}\n\nfunction isEn() {\n var lang = bouncex.html.attr('lang') || '';\n\n return /^en/.test(lang) || /^us/.test(lang);\n}\n\n// We want to limit tracking to only users located within the specified site geo.\nfunction isCorrectCountry() {\n return bouncex.state.geo.country_code === 'US';\n}\n\nfunction isValidForTracking() {\n return isValidDomain() && isEn() && isCorrectCountry();\n}\n\nfunction init() {\n if (!bouncex.testmode.bxdev) {\n if (!isValidForTracking()) {\n return;\n }\n }\n\n initializeUserTracking();\n initializeCartEvents();\n\n switch (bouncex.website.pts) {\n case 'category':\n case 'search':\n initializeCategoryEvents();\n break;\n case 'product':\n initializeItemEvents();\n break;\n default:\n break;\n }\n}\n\ninit();\n","dge":true,"bxidLoadFirst":false,"pie":true,"cme":true,"gbi_enabled":0,"bpush":false,"pt":{"cart":{"testmode":false,"val":[[{"activation":"current_page_url","prop":"contains","prop2":"","prop3":"","val":"/cart"}]]},"category":{"testmode":false,"val":[[{"activation":"js","prop":"","prop2":"","prop3":"","val":"document.querySelectorAll('.cat-landing-wrapper').length > 0 || window.pageData.page.pageTriggerType === \"category\" && window.pageData.page.category != \"Content\""}],[{"activation":"current_page_url","prop":"not_contains","prop2":"","prop3":"","val":"help"}],[{"activation":"current_page_url","prop":"not_contains","prop2":"","prop3":"","val":"content"}],[{"activation":"current_page_url","prop":"not_contains","prop2":"","prop3":"","val":"fit-guide"}],[{"activation":"current_page_url","prop":"not_contains","prop2":"","prop3":"","val":"about"}]]},"checkout":{"testmode":false,"val":[[{"activation":"current_page_url","prop":"contains","prop2":"","prop3":"","val":"/checkout"}]]},"home":{"testmode":false,"val":[[{"activation":"js","prop":"","prop2":"","prop3":"","val":"window.pageData.page.pageName === \"Home\""}],[{"activation":"js","prop":"","prop2":"","prop3":"","val":"document.querySelectorAll('.product-wrapper').length === 0 && window.pageData.page.pageTriggerType != \"Product\""}]]},"product":{"testmode":false,"val":[[{"activation":"js","prop":"","prop2":"","prop3":"","val":"document.querySelectorAll('.product-wrapper').length > 0 || window.pageData.page.pageTriggerType === \"Product\""}],[{"activation":"current_page_url","prop":"not_contains","prop2":"","prop3":"","val":"wishlist"}],[{"activation":"current_page_url","prop":"not_contains","prop2":"","prop3":"","val":"account"}]]},"search":{"testmode":false,"val":[[{"activation":"current_page_url","prop":"contains","prop2":"","prop3":"","val":"/search"}]]}},"els":{"blank_site_element":"","skip_link":"header"},"vars":[{"name":"logged_in","polling":"all","persist":"no","page_types":[],"testmode":false,"default":"false","code":"(function(){\n if (bouncex.utils.url.allowParams().indexOf('/sign-in') > -1) {\n return bouncex.utils.validate.email(jQuery('#login-form-email.softlogin-email').first().text().trim());\n }\n\n if (bouncex.website.pts === \"checkout\") {\n return jQuery('.page-title').text().indexOf('guest') == -1;\n }\n\n return jQuery('.user-loggedin').length > 0;\n})();","trigger":""},{"name":"ever_logged_in","polling":"none","persist":"permanent","page_types":[],"testmode":false,"default":"false","code":"bouncex.vars.logged_in || null;","trigger":""},{"name":"cart_qty","polling":"all","persist":"visit","page_types":[],"testmode":false,"default":"0","code":"(function(){\n if(bouncex.website.pts === \"checkout\"){\n return null;\n }\n return Number(jQuery('.minicart-quantity:first').text().trim()) || 0\n})()","trigger":""},{"name":"in_stock","polling":"all","persist":"no","page_types":[],"testmode":false,"default":"false","code":"jQuery('.add-to-cart:not(:disabled)').length > 0","trigger":""},{"name":"submitted_onsite","polling":"none","persist":"permanent","page_types":[],"testmode":true,"default":"false","code":"","trigger":""},{"name":"page_url","polling":"none","persist":"no","page_types":["category","search"],"testmode":true,"default":"false","code":"bouncex.utils.url.allowParams()","trigger":""},{"name":"logged_in_identified","polling":"none","persist":"visit","page_types":[],"testmode":false,"default":"false","code":"null;","trigger":"pageload"},{"name":"cart","polling":"none","persist":"permanent","page_types":[],"testmode":false,"default":"false","code":"null;","trigger":"pageload"},{"name":"cookie_modal_present","polling":"all","persist":"no","page_types":[],"testmode":true,"default":"false","code":"null;","trigger":"pageload"},{"name":"page_type","polling":"none","persist":"no","page_types":[],"testmode":true,"default":"false","code":"bouncex.website.pts;","trigger":"pageload"},{"name":"attentive_visible","polling":"vars","persist":"no","page_types":[],"testmode":true,"default":"false","code":"jQuery('#attentive_overlay').length > 0;","trigger":"pageload"},{"name":"quickview_visible","polling":"vars","persist":"no","page_types":[],"testmode":false,"default":"false","code":"jQuery('.product-quickview:visible').length > 0","trigger":"pageload"},{"name":"cart_empty","polling":"vars","persist":"no","page_types":["cart"],"testmode":false,"default":"false","code":"jQuery('.cart-empty:visible').length > 0","trigger":"pageload"},{"name":"item_sku","polling":"vars","persist":"no","page_types":["product","category"],"testmode":false,"default":"false","code":"(function() {\n\n var $productSku = jQuery('.product-id.bfx-sku:first');\n if ($productSku.length > 0) {\n return $productSku.text().trim();\n }\n\n var $pdpCarousel = jQuery('div[id^=\"pdpCarousel\"]');\n if ($pdpCarousel.length > 0) {\n var id = $pdpCarousel.attr(\"id\");\n var itemID = id.match(/\\d+$/);\n if(itemID){\n return itemID[0]\n }\n }\n return false;\n})();","trigger":"pageload"}],"dgu":"pixel.cdnwidget.com","dgp":false,"ba":{"enabled":0,"fbte":0},"biu":"assets.bounceexchange.com","bau":"api.bounceexchange.com","beu":"events.bouncex.net","ibx":{"tjs":"","cjs":"","miw":0,"mibcx":1,"te":1,"cart_rep":{"get":"","set":""},"ulpj":{"ogemh":"espemailid"},"cus":"","miw_exclude":"","enabled":1},"etjson":null,"osre":true,"osru":"osr.bounceexchange.com/v1/osr/items","checkDfp":false,"gamNetwork":"","spa":1,"spatm":1,"preinit_cjs":"","crs":{"integrations":null,"pageCount":null},"mat":0,"math":0,"cpnu":"coupons.bounceexchange.com","dfpcms":0,"sms":{"optm":"","eventSharing":false,"shqId":"","enabled":0},"pde":true,"fmc":["AW","AI","AG","AR","BS","BB","BZ","BM","BO","BQ","BR","CA","KY","CL","CO","CR","CU","CW","DM","DO","EC","SV","GF","GL","GD","GT","GP","HT","HN","JM","MQ","MX","MS","NI","PA","PY","PE","PR","PM","MF","BL","KN","LC","VC","SX","SR","TT","US","UM","UY","VE","VG","VI"],"fme":true,"fmx":"#gcRecipientName, #gcRecipientEmail, #gcConfirmRecipientEmail, #gcSenderEmail, #giftCardNumberBalance, #giftCardPinBalance","uid2":true,"sdk":{"android":{"enabled":false,"enabledVersions":[],"eventModifications":null},"ios":{"enabled":false,"enabledVersions":[],"eventModifications":null}},"onsite":{"enabled":1},"ads":{"enabled":0},"pubs":{"enabled":0},"websdk":{"enabled":0,"devMode":0},"ga4_property_id":"","ga4_measurement_id":"","tag_state_domain":"api.bounceexchange.com","tag_state_domain_enabled":false} ; bouncex.tag = 'tag3'; bouncex.$ = window.jQuery; bouncex.env = 'production'; bouncex.restrictedTlds = {"casl":{"ca":1},"gdpr":{"ad":1,"al":1,"at":1,"ax":1,"ba":1,"be":1,"bg":1,"by":1,"xn--90ais":1,"ch":1,"cy":1,"cz":1,"de":1,"dk":1,"ee":1,"es":1,"eu":1,"fi":1,"fo":1,"fr":1,"uk":1,"gb":1,"gg":1,"gi":1,"gr":1,"hr":1,"hu":1,"ie":1,"im":1,"is":1,"it":1,"je":1,"li":1,"lt":1,"lu":1,"lv":1,"mc":1,"md":1,"me":1,"mk":1,"xn--d1al":1,"mt":1,"nl":1,"no":1,"pl":1,"pt":1,"ro":1,"rs":1,"xn--90a3ac":1,"ru":1,"su":1,"xn--p1ai":1,"se":1,"si":1,"sj":1,"sk":1,"sm":1,"ua":1,"xn--j1amh":1,"va":1,"tr":1}}; bouncex.client = { supportsBrotli: 1 }; bouncex.assets = {"ads":"31fdfa295d35a29e04f46d0e63fee3ed","creativesBaseStyles":"a53944a2","gpsAuction":"bbb80866120d17013073bb6d284cbd6b","inbox":"a17aab65d5ec0e7dbba07712663f933e","onsite":"c05f8c5551fa6b964660ad61916291c1","sms":"e39203556bab2366e56296ce42e974a7","websdk":"9c2817e65e803cb8c86d0410c88f20c1","website_campaigns_7395":"01d620567676628154c8c718fe71502d"}; bouncex.push = function(pushData) { bouncex.pushedData.push(pushData); } var runtime = document.createElement('script'); runtime.setAttribute('src', '//assets.bounceexchange.com/assets/smart-tag/versioned/runtime_c81e76ee00d795b1eebf8d27949f8dc5.br.js'); runtime.setAttribute('async', 'async'); bouncex.initializeTag = function() { var script = document.createElement('script'); script.setAttribute('src', '//assets.bounceexchange.com/assets/smart-tag/versioned/main-v2_24d56cffd5b9a72217cf4bed3e56d27d.br.js'); script.setAttribute('async', 'async'); document.body.appendChild(script); var deviceGraphScript = document.createElement('script'); deviceGraphScript.setAttribute('src', '//assets.bounceexchange.com/assets/smart-tag/versioned/cjs_min_23e9fb6eac44d2bdee89ffde48eb6611.js'); deviceGraphScript.setAttribute('async', 'async'); var dgAttrs = [{"Key":"id","Value":"c.js"},{"Key":"async","Value":"true"},{"Key":"data-apikey","Value":"2^HIykD"},{"Key":"data-cb","Value":"bouncex.dg.initPostDeviceGraph"},{"Key":"data-bx","Value":"1"},{"Key":"data-gm","Value":"1"},{"Key":"data-fire","Value":"1"}]; if (dgAttrs) { for (var i = 0; i < dgAttrs.length; i++) { deviceGraphScript.setAttribute(dgAttrs[i].Key, dgAttrs[i].Value); } } document.body.appendChild(deviceGraphScript); bouncex.initializeTag = function() {}; }; runtime.onload = bouncex.initializeTag; document.body.appendChild(runtime); } } if (document.readyState === "loading") { document.addEventListener("DOMContentLoaded", bxBootstrap); } else { bxBootstrap(); }})();