console.log('uid='); //*** time check 1 (0.00582s elapsed) //*** time check 2 (0.00611s elapsed) //*** JJ itemId=pd-template //*** JJ pageType=category //*** time check 3 (0.0084s elapsed) //*** forceOutOfStock=true //*** time check 4 (0.00842s elapsed) //*** public_mod_structuredData_renderJsonByItemId found //*** public_mod_structuredData enabled //*** mod_structuredData: Not included because dedicated Structure Data File is enabled. //*** time check 5 (0.00852s elapsed) //*** mod_storeClosed called //*** time check 6 (0.00892s elapsed) //*** time check 7 (0.00893s elapsed) var pdServerTime = new Date("2024-05-12T05:57:34-05:00"); var pdProductId = "pd-template"; var productIdListRewardsCsv = "pd-template"; var productIdListCsv = "pd-template"; //************************************************ //************ JS/CSS FILE ROUTINES ************* //************************************************ function pdLoadJsCssFile(filename, filetype){ if (filetype=="js") { var fileref=document.createElement('script'); fileref.setAttribute("type","text/javascript"); fileref.setAttribute("async",true); fileref.setAttribute("src", filename); } else if (filetype=="css") { var fileref=document.createElement("link"); fileref.setAttribute("rel", "stylesheet"); fileref.setAttribute("type", "text/css"); fileref.setAttribute("href", filename); } if (typeof fileref!="undefined") document.getElementsByTagName("head")[0].appendChild(fileref); } function pdAddStyle(css) { var style = document.createElement("style"); style.innerHTML = css; document.getElementsByTagName("body")[0].appendChild(style); } //*** time check 8 (0.00896s elapsed) /* pdGetElementsByClassName -- Revised to avoid JS conflicts with libraries that override native "getElementsByClassName" browser function in IE Developed by Robert Nyman, http://www.robertnyman.com Code/licensing: http://code.google.com/p/getelementsbyclassname/ */ var pdGetElementsByClassName = function (className, tag, elm){ var ieVersion = getInternetExplorerVersion(); if (ieVersion == -1 && document.getElementsByClassName) { pdGetElementsByClassName = function (className, tag, elm) { elm = elm || document; var elements = elm.getElementsByClassName(className), nodeName = (tag)? new RegExp("\b" + tag + "\b", "i") : null, returnElements = [], current; for(var i=0, il=elements.length; i -1) { if(signatureList[i] == 'android') { //*** ONLY CONSIDER android a mobile device if "mobile" is also present in user agent string if(agent.indexOf("mobile") > -1) isMobile = true; } else { isMobile = true; } } } return isMobile; } function pdIsIpad() { var isIpad = false; var signatureList = new Array('ipad'); var agent = navigator.userAgent.toLowerCase(); for(var i=0;i -1) isIpad = true; } return isIpad; } function pdIsTablet() { var isTablet = false; var signatureList = new Array('ipad', 'android'); var agent = navigator.userAgent.toLowerCase(); for(var i=0;i -1) { isTablet = true; //*** ASSUME TABLET if(signatureList[i] == 'android') { //*** ONLY CONSIDER android a mobile device if "mobile" is also present in user agent string if(agent.indexOf("mobile") > -1) isTablet = false; } else { isTablet = true; } } } return isTablet; } function pdFormatCurrency(num, includeDollarSign) { num = num.toString().replace(/$|\,/g,''); if(isNaN(num)) num = "0"; sign = (num == (num = Math.abs(num))); num = Math.floor(num*100+0.50000000001); cents = num%100; num = Math.floor(num/100).toString(); if(cents<10) cents = "0" + cents; for (var i = 0; i < Math.floor((num.length-(1+i))/3); i++) num = num.substring(0,num.length-(4*i+3))+','+ num.substring(num.length-(4*i+3)); var returnValue = (((sign)?'':'-') + num + '.' + cents); if(includeDollarSign == true) returnValue = "$" + returnValue; return returnValue; } function pdFindParentForm(element) { var elm,parentForm; for (elm = element.parentNode; elm; elm = elm.parentNode) { if(elm.tagName.toLowerCase() == "form") { parentForm = elm; break; } } return parentForm; } function pdHideForLoggedInUser() { var hideList = pdGetElementsByClassName("pdHideForLoggedInUser", null); for(var i=0;i'; // Check if the container exists if (container) { // Find the div with the class "pditem-availability" within the container var availabilityDiv = container.querySelector('.pditem-availability'); // Check if the target div is found if (availabilityDiv) { // Replace the content of the div availabilityDiv.outerHTML = stockMessage; } } } function pdShowItemAsOutOfStock(container) { var stockMessage = 'Out of Stock'; // Check if the container exists if (container) { // Find the div with the class "pditem-availability" within the container var availabilityDiv = container.querySelector('.pditem-availability'); // Check if the target div is found if (availabilityDiv) { // Replace the content of the div availabilityDiv.outerHTML = stockMessage; } } } pdUpdateQtyInStockDisplay(); //*** time check 10a (0.01168s elapsed) //*** mod_questionsAndAnswers //*** searchhere: test //*** js for interactive questions and answers //*** js for most helpful answers jQuery(document).ready(function(){ var answerIdList = new Array(); for (var i = 0; i < answerIdList.length; i++) { var answerId = answerIdList[i]; console.log(jQuery("div[answerId='"+answerIdList[i]+"']")); jQuery("div[answerId='"+answerIdList[i]+"']").attr("style", "display: block"); } });//*** js for pausing questions //*** Q&A: pauseQuestions != true //*** time check 11 (0.01253s elapsed) //*** js for pausing questions //*** Q&A: pauseQuestions != true var pdStarsRefreshFlag = true;function pdDisplayCategoryStars() { if(pdStarsRefreshFlag == true) { pdStarsRefreshFlag = false; } } pdDisplayCategoryStars(); //*** time check 12 (0.01259s elapsed) $(".abr-flex-favorite-link").on("click", function(){ var pdAddToFavoritesAction = "https://myaccount.albeebaby.com/mod_favorites/ajax/favoritesAddItemNew.php"; var itemId = jQuery(this).parent().parent().data("data-itemid"); var productId = jQuery(this).parent().parent().data("productId"); var item; if(!isBlank(itemId)){ item = itemId; }else{ item = productId; } var pdAddToFavoritesButton = jQuery(this); if (!item) { console.log("Unable to identify item id for adding to favorites"); return false; } var data = { vwitem: item } //**** IF ITEM IS ALREADY FAVORITED, DISABLE ACTIONS AND DIRECT TO CUSTOMER FAVORITES *** var pdItemAlreadyInFavorites = jQuery(this).children("div").hasClass("is-favorite"); var pdItemAddedToFavorites = jQuery(this).children("div").hasClass("is-added"); if(pdItemAlreadyInFavorites == true || pdItemAddedToFavorites == true){ console.log("Item is already in customer favorites"); return false; } jQuery.ajax({ 'async': false, 'global': false, 'xhrFields': {withCredentials: true}, 'type': "POST", 'url': pdAddToFavoritesAction, 'data': data, 'crossDomain': true, 'success': function (response) { if (response.indexOf("<") == 0){ response = response.slice(response.indexOf(">")+1); } var data = jQuery.parseJSON(response); console.log(data); if (data['loggedIn'] == true){ jQuery(pdAddToFavoritesButton).addClass("is-favorite"); console.log("Success adding to favorites"); } else{ console.log("User not logged in adding to favorites"); } }, 'error': function(xhr, status, error){ var errorMessage = xhr.status + ': ' + xhr.statusText console.log('Error - ' + errorMessage); } }); }); function pdAddToFavorites(orderForm,index,productUrl) { var pdAddToFavoritesAction = "https://myaccount.albeebaby.com/mod_favorites/favoritesAddItem.php"; if(pdIsBlank(index)) index = 0; var item = "vwitem" + index; var itemAttr = "vwattr" + index + "_"; //*** CAN'T FIND MULTIFORM ELEMENT? FALL BACK TO SINGLE ITEM CASE if(typeof orderForm[item] == "undefined") { item = "item"; itemAttr = "vwattr_"; } //******** ATTACH PRODUCT ID INPUT ************** if(item != "item") { var inputProductId = document.createElement("INPUT"); inputProductId.type = "hidden"; inputProductId.name = "add-single-favorites"; inputProductId.value = index; orderForm.appendChild(inputProductId); } if(productUrl == "autoDetect") productUrl = String(document.location); if(!pdIsBlank(productUrl)) { var inputOptions = document.createElement("INPUT"); inputOptions.type = "hidden"; inputOptions.name = "productUrl"; inputOptions.value = productUrl; orderForm.appendChild(inputOptions); } var tempAction = orderForm.action; var copiedQueryString = ""; var queryStringPosition = tempAction.indexOf("?"); if(queryStringPosition > -1) { copiedQueryString = tempAction.substring(queryStringPosition, tempAction.length); copiedQueryString = copiedQueryString.replace("+", "%20"); } orderForm.action=pdAddToFavoritesAction + copiedQueryString; if(orderForm.target != "_top") orderForm.target = ""; //*** COMPAT W/ SCFC orderForm.submit(); orderForm.action = tempAction; orderForm.removeChild(inputProductId); orderForm.removeChild(inputOptions); return false; } //*** time check 13 (0.01268s elapsed) //*** time check 14 (0.01268s elapsed) jQuery("#pdLoggedInDisplay").html(""); //*** time check 15 (0.01428s elapsed) if (typeof pdPerformLoginActions === "function") { pdPerformLoginActions(false); } //*** time check 16 (0.01429s elapsed) //*** time check 17 (0.01431s elapsed) //*** time check 18 (0.01432s elapsed) //*** time check 19 (0.01433s elapsed) //*** time check 20 (0.01515s elapsed) //*** mod_listrak enabled //*** public_mod_listrak_getPageScript found jQuery(".pdOneEmailForm").children("form").addClass("pdOneCustomForm"); jQuery(".pdOneCustomForm").submit(function(e){ //capture form submited ("this" may be replaced) var form = this; if (jQuery(this).attr('submissionType') != 'static'){ //prevent form from submitting e.preventDefault(e); var formCode = jQuery(form).parent().attr('formId'); var inputList = []; jQuery(form).find('input').each(function(){ if (jQuery(this).attr('type') != 'submit'){ //Build input list to push to ajax var inputName = jQuery(this).attr('name'); var inputValue = jQuery(this).val(); inputList.push([inputName,inputValue]); } }); jQuery.ajax({ 'async': false, 'global': false, 'xhrFields': {withCredentials: true}, 'type': "POST", 'crossDomain': true, 'url': "https://myaccount.albeebaby.com//mod_listrak/ajax/recordEmailForm.php", data: {formCode:formCode, inputList:inputList}, 'success': function(result) { console.log(result); } }); } else { var formCode = jQuery(form).parent().attr('formId'); jQuery(this).append('') } }); if (typeof pdLoadJsCssFile == 'function') { pdLoadJsCssFile("https://myaccount.albeebaby.com//mod_coreAdmin/jquery/jquery-ui-1.11.4/jquery-ui.min.js", "js"); pdLoadJsCssFile("https://myaccount.albeebaby.com//mod_coreAdmin/jquery/jquery-ui-1.11.4/jquery-ui.min.css", "css"); pdLoadJsCssFile("https://myaccount.albeebaby.com//mod_coreAdmin/jquery/jquery-ui-1.11.4/jquery-ui.structure.min.css", "css"); pdLoadJsCssFile("https://myaccount.albeebaby.com//mod_coreAdmin/jquery/jquery-ui-1.11.4/jquery-ui.theme.min.css", "css"); } try {jQuery(".datepicker").datepicker();} catch(e) {}//*** time check 21 (0.01573s elapsed) //*** mod_productDisplay enabled //*** public_mod_productDisplay_pageScript found //*** time check 22 (0.01725s elapsed) //********************************* //*** BEGIN mod_promotionCenter *** //********************************* //*** PROMO OFFER NOT FOUND FOR THIS PAGE ID //*** mod_promotionCenter_getRenderedPageScript3: 0 pdLoadJsCssFile("https://albeebaby.practicaldatacore.com//cdn/mod_promotionCenter/pdPromotionCenter.css?cb=1906123", "css"); //*** retrieving data //*** countdownTimerDebug //*** countdownTimerDebugBefore var pdDisplayTimers = function() { var timerObjects = new Array(); var timerList = new Array(); var serverTimeOffset = null; function pdGetCurrentTime() { var currentDate = new Date(); if (serverTimeOffset === null) { serverTimeOffset = 0; if (typeof pdServerTime != 'undefined') { serverTimeOffset = (currentDate - pdServerTime) / 1000; console.log("Setting server time offset to " + serverTimeOffset); } } var dateAdjustedForServerTime = currentDate; dateAdjustedForServerTime.setSeconds(dateAdjustedForServerTime.getSeconds() + serverTimeOffset); return dateAdjustedForServerTime; } //*** "SNEAK PEEK" COUNT UP TIMER *** function pdDisplayCountdownToStart(target, millisecondsRemaining) { var timeRemaining = Math.floor(millisecondsRemaining / 1000); var daysRemaining = 0; var hoursRemaining = 0; var minutesRemaining = 0; var secondsRemaining = 0; var countdownHtml = '
'; var countdownSmHtml = '
'; if (timeRemaining > 0) { daysRemaining = Math.floor(timeRemaining / 86400); hoursRemaining = Math.floor((timeRemaining - (daysRemaining * 86400)) / 3600); minutesRemaining = Math.floor((timeRemaining - (hoursRemaining * 3600) - (daysRemaining * 86400)) / 60); secondsRemaining = timeRemaining - (hoursRemaining * 3600 + minutesRemaining * 60 + daysRemaining * 86400); var daysRemainingPrefix = ""; var daysRemainingPrefixSm = ""; if(daysRemaining == 1) { daysRemainingPrefix = '
' + daysRemaining + 'Day
:
'; daysRemainingPrefixSm = '
' + daysRemaining + 'Day
:
'; } else if(daysRemaining > 1) { daysRemainingPrefix = '
' + daysRemaining + 'Days
:
'; daysRemainingPrefixSm = '
' + daysRemaining + 'Days
:
'; } countdownHtml += daysRemainingPrefix + '
' + pdZeroPad(hoursRemaining) + 'Hrs
:
' + pdZeroPad(minutesRemaining) + 'Min
:
' + pdZeroPad(secondsRemaining) + 'Sec
'; countdownSmHtml += daysRemainingPrefixSm + '
' + pdZeroPad(hoursRemaining) + 'Hrs
:
' + pdZeroPad(minutesRemaining) + 'Min
:
' + pdZeroPad(secondsRemaining) + 'Sec
'; jQuery(".pdCountdown[productId='" + target + "'] span").html(countdownHtml); jQuery(".pdCountdownSm[productId='" + target + "'] span").html(countdownHtml); }else{ //** RELOAD PAGE TO SHOW PROMOTIONAL OFFER MESSAGING *** jQuery(".pdCountdown[productId='" + target + "'] span").html(""); jQuery(".pdCountdownSm[productId='" + target + "'] span").html(""); //location.reload(); setTimeout(location.reload.bind(location), 2000); //*** 5 second delay *** } } function pdDisplayCountdown(target, millisecondsRemaining, millisecondsTotal, countUpTimer=false) { var totalTime = Math.floor(millisecondsTotal / 1000); var timeRemaining = Math.floor(millisecondsRemaining / 1000); var daysRemaining = 0; var hoursRemaining = 0; var minutesRemaining = 0; var secondsRemaining = 0; if (timeRemaining > 0) { daysRemaining = Math.floor(timeRemaining / 86400); hoursRemaining = Math.floor((timeRemaining - (daysRemaining * 86400)) / 3600); minutesRemaining = Math.floor((timeRemaining - (hoursRemaining * 3600) - (daysRemaining * 86400)) / 60); secondsRemaining = timeRemaining - (hoursRemaining * 3600 + minutesRemaining * 60 + daysRemaining * 86400); var countdownHtml = ''; var countdownSmHtml = ''; if (!countUpTimer){ countdownHtml = '
'; countdownSmHtml = '
'; } else { countdownHtml = '
'; countdownSmHtml = '
'; } var daysRemainingPrefix = ""; var daysRemainingPrefixSm = ""; if(daysRemaining == 1) { daysRemainingPrefix = '
1Day
:
'; daysRemainingPrefixSm = '
1Day
:
'; } else if(daysRemaining > 1) { daysRemainingPrefix = '
' + daysRemaining + 'Days
:
'; daysRemainingPrefixSm = '
' + daysRemaining + 'Days
:
'; } countdownHtml += daysRemainingPrefix + '
' + pdZeroPad(hoursRemaining) + 'Hrs
:
' + pdZeroPad(minutesRemaining) + 'Min
:
' + pdZeroPad(secondsRemaining) + 'Sec
'; countdownSmHtml += daysRemainingPrefixSm + '
' + pdZeroPad(hoursRemaining) + 'Hrs
:
' + pdZeroPad(minutesRemaining) + 'Min
:
' + pdZeroPad(secondsRemaining) + 'Sec
'; jQuery(".pdCountdown[productId='" + target + "'] span").html(countdownHtml); jQuery(".pdCountdownSm[productId='" + target + "'] span").html(countdownSmHtml); } else { if (!countUpTimer) { var countdownHtml = '
'; jQuery(".pdCountdown[productId='" + target + "']").html(countdownHtml); jQuery(".pdCountdownSm[productId='" + target + "']").html(countdownSmHtml); } else { jQuery(".pdCountdown[productId='" + target + "']").parent().hide(); jQuery(".pdCountdownSm[productId='" + target + "']").parent().hide(); } } var pctRemaining = Math.round((timeRemaining / totalTime) * 100); if (timeRemaining > 0) { jQuery(".pdCountdownProgbar[productId='" + target + "']").css('width', pctRemaining + '%'); jQuery(".pdCountdownSmProgbar[productId='" + target + "']").css('width', pctRemaining + '%'); } if (timeRemaining <= 0) return false; else return true; } function pdZeroPad(input) { if (String(input).length == 1) input = "0" + String(input); return input; } return function() { if (timerList.length == 0) { timerList = jQuery(".pdCountdown[productId],.pdCountdownSm[productId]").toArray(); for (var i = 0; i < timerList.length; i++) { timerObjects[i] = new Object(); timerObjects[i]["productId"] = timerList[i].getAttribute("productId"); var s = timerList[i].getAttribute("startTime"); timerObjects[i]["startTime"] = new Date(s); var s = timerList[i].getAttribute("finishTime"); timerObjects[i]["finishTime"] = new Date(s); var s = timerList[i].getAttribute("preStartTime"); timerObjects[i]["preStartTime"] = new Date(s); var s = timerList[i].getAttribute("timerType"); if (s == "countUpTimer") {timerObjects[i]["countUpTimer"] = true;}else{timerObjects[i]["countUpTimer"] = false;} timerObjects[i]["completed"] = false; } } var currentTime = pdGetCurrentTime(); var keepRunning = false; for (var i = 0; i < timerObjects.length; i++) { if (timerObjects[i]["completed"] == false) { keepRunning = true; //*** LOGIC TO DECIDE ON DISPLAYING COUNT UP / SNEAK PEEK "COUNTUP" TIMER *** if (currentTime < Math.floor(timerObjects[i]["startTime"]) && currentTime > Math.floor(timerObjects[i]["preStartTime"])) { if (timerObjects[i]["countUpTimer"]) { //*** DISPLAY THE SNEAK PEEK "COUNT UP" TIMER *** timerObjects[i]["timeRemaining"] = Math.floor(timerObjects[i]["startTime"] - currentTime); pdDisplayCountdownToStart( timerObjects[i]["productId"], timerObjects[i]["timeRemaining"] ); } } else { timerObjects[i]["totalTime"] = Math.floor(timerObjects[i]["finishTime"]) - Math.floor(timerObjects[i]["startTime"]); timerObjects[i]["timeRemaining"] = Math.floor(timerObjects[i]["finishTime"] - currentTime); success = pdDisplayCountdown( timerObjects[i]["productId"], timerObjects[i]["timeRemaining"], timerObjects[i]["totalTime"], timerObjects[i]["countUpTimer"] ); if (success == false) timerObjects[i]["completed"] = true; } } } if (keepRunning == false) { console.log("All timers finished."); clearInterval(pdTimer); } }; }(); var pdTimer = setInterval(pdDisplayTimers, 1000); pdDisplayTimers(); //*** countdownTimerDebugAfter //******************************* //*** END mod_promotionCenter *** //******************************* //*** time check 23 (0.11594s elapsed) //*** SEND PROMO INFO TO ALREADY ON-PAGE HANDLER FUNCTION var pdPromo = {}; try{pdHandlePromoInfo(pdPromo)} catch(e) {} //*** SEND PROMO INFO TO ALREADY ON-PAGE HANDLER FUNCTION var pdProductListCalloutHtml = ""; try{pdHandleProductListCallout(pdProductListCalloutHtml)} catch(e) {} //*** time check 24 (0.11804s elapsed) //****************************** //*** BEGIN mod_fbConversion *** //****************************** //*** public_mod_fbConversion_queuePageViewEvent has been called and event created. //**************************** //*** END mod_fbConversion *** //**************************** //*** time check 25 (0.11812s elapsed) //*** time check 26 (0.11915s elapsed) //**** Privacy ****** //*** time check 27 (0.11971s elapsed) //*** time check 28 (0.12053s elapsed) //**** CART ITEM COUNT MESSAGE ***** function pdDisplayCartItemCount() { var pdCartItemCount = pdGetCookie('pdCartItemCount'); if(!pdIsBlank(pdCartItemCount)) { var pdCartItemCountMessage = pdCartItemCount; jQuery('.pdCartItemCountMessage').html(pdCartItemCountMessage); } } pdDisplayCartItemCount(); //*** pageScript end (0.12059s elapsed) //*** time check 29 (0.1206s elapsed)