CINXE.COM
My Grocery List - Get Started
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fbml"> <head><script type="text/javascript" src="https://web-static.archive.org/_static/js/bundle-playback.js?v=7YQSqjSh" charset="utf-8"></script> <script type="text/javascript" src="https://web-static.archive.org/_static/js/wombat.js?v=txqj7nKC" charset="utf-8"></script> <script>window.RufflePlayer=window.RufflePlayer||{};window.RufflePlayer.config={"autoplay":"on","unmuteOverlay":"hidden"};</script> <script type="text/javascript" src="https://web-static.archive.org/_static/js/ruffle/ruffle.js"></script> <script type="text/javascript"> __wm.init("https://web.archive.org/web"); __wm.wombat("http://www.publix.com:80/mygrocerylist/GetStarted.do","20130518184243","https://web.archive.org/","web","https://web-static.archive.org/_static/", "1368902563"); </script> <link rel="stylesheet" type="text/css" href="https://web-static.archive.org/_static/css/banner-styles.css?v=p7PEIJWi" /> <link rel="stylesheet" type="text/css" href="https://web-static.archive.org/_static/css/iconochive.css?v=3PDvdIFv" /> <!-- End Wayback Rewrite JS Include --> <title> My Grocery List - Get Started </title> <link rel="stylesheet" type="text/css" href="/web/20130518184243cs_/http://www.publix.com/resource/ecms.css"/> <link rel="stylesheet" type="text/css" href="/web/20130518184243cs_/http://www.publix.com/resource/custom-publix/jquery-ui-1.8.7.custom.css"/> <link rel="stylesheet" type="text/css" href="/web/20130518184243cs_/http://www.publix.com/resource/jquery.autocomplete.css"/> <link rel="stylesheet" type="text/css" media="print" href="/web/20130518184243cs_/http://www.publix.com/resource/print.css"/> <link rel="stylesheet" type="text/css" media="screen" href="/web/20130518184243cs_/http://www.publix.com/resource/share-print-a.css"/> <link rel="stylesheet" type="text/css" media="screen" href="/web/20130518184243cs_/http://www.publix.com/resource/global.css"/> <link rel="stylesheet" type="text/css" media="screen" href="/web/20130518184243cs_/http://www.publix.com/resource/css/asp.css"/> <script type="text/javascript" src="/web/20130518184243js_/http://www.publix.com/resource/jquery-1.4.2.min.js"></script> <script type="text/javascript" src="/web/20130518184243js_/http://www.publix.com/resource/jquery-ui-1.8.6.custom.min.js"></script> <script type="text/javascript" src="/web/20130518184243js_/http://www.publix.com/resource/jquery.form.js"></script> <script type="text/javascript" src="/web/20130518184243js_/http://www.publix.com/resource/jquery.autocomplete.js"></script> <script type="text/javascript" src="/web/20130518184243js_/http://www.publix.com/resource/global.js"></script> <script language="JavaScript1.2"> dqm__codebase = "/resource/" //script folder location </script> <script language="JavaScript1.2" src="/web/20130518184243js_/http://www.publix.com/resource/menu_settings.js"></script> <script language="JavaScript1.2" src="/web/20130518184243js_/http://www.publix.com/resource/dqm_loader.js"></script> <script language="JavaScript1.2" src="/web/20130518184243js_/http://www.publix.com/resource/onloadHandler.js"></script> <meta http-equiv="Pragma" content="no-cache"> <meta http-equiv="Expires" content="0"> <link rel="stylesheet" type="text/css" media="all" href="/web/20130518184243cs_/http://www.publix.com/resource/my_grocery_list.css"/> <!-- 22view:thru / 110914 --> <script type="text/javascript"> if (typeof _gaq == 'undefined') var _gaq = _gaq || []; function satellite_asyncLoad(loadThisThing) { var gattjs = document.createElement('script'); gattjs.type = 'text/javascript'; gattjs.async = true; gattjs.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + loadThisThing; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(gattjs, s); }; satellite_asyncLoad("s3.amazonaws.com/searchdiscovery-satellite/publix/satelliteLib-publix.js"); </script> <script> function clearPrompt() { if ( $("#nounRemote").val('') == 'Type item here' ){ $("#nounRemote").val('') = ''; } } function nounRemoteFocus() { if ( $("#nounRemote").val() != 'Type item here' ){ $("#nounRemote").focus(); } } function refreshGroceryList() { $('#groceryListItems').load("/mygrocerylist/ajax/DisplayRecentAddedGLItems.do"); $('#mainNavNumberOfItemsOnList').load("/mygrocerylist/ajax/NumGLItems.do"); nounRemoteFocus(); } function loadGlStarterItems() { // alert( "In the loadGlStarterItems" ); $('#groceryListStarterItems').load("/mygrocerylist/ajax/DisplayGlStarterListItems.do"); } function addToList( noun ) { $.ajax({ type: "POST", url: "/mygrocerylist/ajax/GLItemAdd.do", data: "q=" + noun, success: function(msg) { refreshGroceryList(); $("#nounRemote").val(''); $('#nounRemote').focus(); } }); //stop form submit. return false; } function deleteGroceryListItem(itemId){ $.ajax({ url: "/mygrocerylist/ajax/GLItemMod.do?a=del&id=" + itemId, global: false, type: "POST", dataType: "html", async:false, success: function(msg){ // alert(msg); refreshGroceryList(); } }); //why submit form? return false; } $().ready(function() { $.ajaxSettings.cache = false; $("#nounRemote").autocomplete("/mygrocerylist/ajax/GLItemSearch.do", { minChars: 3, max: 20, autoFill: false, mustMatch: false, matchContains: true, width: 199, scrollHeight: 400, selectFirst: false, cacheLength: 0 }); $("#nounRemote").result(function(event, data, formatted) { if (data) { $(this).parent().next().find("input").val(data[1]); } $("#addToListForm").submit(); }); $("#addToListForm").submit(function(){ var item = $("#nounRemote").val(); // this is a hack to allow the "%"% to be passed on the form var itemStr = item.replace("%","PeRcEnT") if ( itemStr != null && itemStr != '' ){ addToList( itemStr ); $("#nounRemote").val(''); } //disable submit. return false; }); $("#submitGlStarterList").click( function(){ // alert("IN THE submitGlStarterList.click()"); addToGroceryList(); }); $('#groceryList').click( function(e) { if( $(e.target).is('a') || $(e.target).is('img') ) { var $tr = $(e.target).closest('tr'); var id = $tr.attr("id").split('_'); if ( $(e.target).attr("id") == "del" ) { //This will load the qty as zero, briefly (and do back end removal) deleteGroceryListItem(id[1]); } } }); // $('#nounRemote').focus(); loadGlStarterItems(); refreshGroceryList(); }); function addGlStarterItemsToList( glStarterItemStr ) { $.ajax({ type: "POST", url: "/mygrocerylist/ajax/GLMultipleItemsAdd.do", data: "q=" + glStarterItemStr, success: function(msg) { // alert( "Data Saved?: " + msg ); refreshGroceryList(); } }); } function addToGroceryList(){ // alert("IN THE addToGroceryList()"); var glStarterItemStr = ''; var first = true; $("input:checkbox").each( function(){ if(this.name == 'glStarterItemCheckbox' && this.checked){ if (first){ glStarterItemStr = this.value; first = false; } else { glStarterItemStr += '|' + this.value; } this.checked = false; } }); if ( glStarterItemStr != ''){ addGlStarterItemsToList(glStarterItemStr); } } </script> <meta name="Description" content="The Publix Grocery List allows users to create a shopping list of generic items, weekly ad items, Simple Meal ingredients, and other Publix products that will indicate where in the store those items can be found. Convenient and easy-to-use, get started creating your Grocery List today and make sure your Publix shopping experience is even more pleasurable than ever."> <meta name="Keywords" content="shopping, grocery, list, Publix, items, store, location, weekly, ad, ads"> <meta name="Boost" content="2"> <script src="/web/20130518184243js_/http://www.publix.com/urchin.js" type="text/javascript"></script> <script type="text/javascript"> _userv=0; urchinTracker(); </script> <meta property="fb:page_id" content="168342453214799"/> <meta property="fb:admins" content="100002341544681,100002324131136,100002423998910,1527097450"/> <meta property="fb:app_id" content="218770528164917"> </head> <!-- Build130502-01 --> <body> <div id="storeNav" style="position:relative; z-index: 1001;"> <link rel="stylesheet" type="text/css" media="screen" href="/web/20130518184243cs_/http://www.publix.com/resource/headerFooter.css"/> <script type="text/javascript"> !window.jQuery && document.write('<script src="\/resource\/jquery-1.4.2.min.js"><\/script>'); window.onerror = new Function("return true;"); </script> <script type="text/javascript" src="/web/20130518184243js_/http://www.publix.com/resource/storeSearchReady.js"></script> <script type="text/javascript" src="/web/20130518184243js_/http://www.publix.com/resource/storeSearchHeader.js"></script> <script type="text/javascript" src="/web/20130518184243js_/http://www.publix.com/resource/jquery_cookie.js"></script> <script type="text/javascript"> $().ready(function() { $.ajaxSettings.cache = false; var hideLogin = $( "#HIDE_LOGIN_PANEL" ).val(); if(hideLogin == 'true'){ $( "#user_menu" ).hide(); } else { $( "#user_menu" ).show(); } }); </script> <input type="hidden" name="SERVER_URL" id="SERVER_URL" value="https://www.publix.com"/> <input type="hidden" name="HIDE_LOGIN_PANEL" id="HIDE_LOGIN_PANEL" value="null"/> <input type="hidden" id="WERE_STORES_FOUND" value="NO"/> <input type="hidden" id="STORE_NUMBER" value=""/> <input type="hidden" id="WA_BREAK" value=""/> <div id="publix_personalized"> <div class="wrapper"> <div id="localize_main" style="display:none;"> <div class="wrapper"> <div id="topX"> <div class="right"> <a href="#close" class="close"><img src="/web/20130518184243im_/http://www.publix.com/images/headers/btn_close.gif" alt="close"/></a> </div> <div class="left"> <div id="WelcomeBlock" style="display:none;"> <h2><img src="/web/20130518184243im_/http://www.publix.com/images/headers/header_welcome.png" alt="Welcome to Publix!"/></h2> <p>You've come to the right place for shopping pleasure online. Choose your store and your entire experience will be customized just for you, from saving grocery lists for easy shopping to saving menus for events, creating your own box of go-to recipes to managing cooking school classes, and more. Make the most of your publix.com today-just enter your zip code to get started now.</p> </div> <form name="f_localize_main" id="f_localize_main" action="#"> <table cellspacing="0" cellpadding="0"> <tr> <td> <input name="localize_main_zip" id="localize_main_zip" value="Enter a Zip Code or City, State" maxlength="32" onfocus="if(this.value == 'Enter a Zip Code or City, State') { this.value = ''; }" onblur="if(this.value == '') { this.value = 'Enter a Zip Code or City, State'; }"/> </td> <td style="padding-left: 10px;"><input type="image" id="btnSubmit1" src="/web/20130518184243im_/http://www.publix.com/images/headers/btn_go.gif" class="btn_submit" onclick="locateStore()"/></td> <td id="noThanksButton" style="padding-left: 30px; display:inline;"><a href="javascript:void(0);" class="btn_no_thanks"><img src="/web/20130518184243im_/http://www.publix.com/images/headers/btn_no-thanks.gif" alt="No Thanks"/></a></td> </tr> </table> </form> </div> </div> <div id="StoreDropdownArea" style="display:none;"> <div id="SelectStore_Dropdown" class="NewContactForm" style="height:auto;"> <h2 id="H2Header"> Select your store from the list below <a class="headerClose"> <img src="/web/20130518184243im_/http://www.publix.com/images/headers/btn_close.gif" alt="close"/> </a> </h2> <div id="StoreDialogHeader" style="display:hidden"> <table cellspacing="0" style="width: 550px;"> <tbody> <tr> <th width="50%" style="font-weight:normal;">Location Information</th> <th width="25%" style="font-weight:normal;">Distance</th> <th width="25%" style="font-weight:normal;"> </th> </tr> </tbody> </table> </div> <div id="NoStoresFound" style="display:none;"> <table cellspacing="0" style="width: 550px;"> <tbody> <tr> <td align="center"> We're sorry, we did not locate any stores using the information you entered. Please verify your information is either a 5 digit zip code or a city and state abbreviation (Miami, FL) and try again. </td> </tr> </tbody> </table> </div> <div id="StoreLocatorTemplate" style="display:none;"> <table cellspacing="0" style="width:550px; background:#fff;"> <tbody> <tr valign="top"> <td width="50%"> <span class="storeName" style="font-weight:bold;"></span> <b><br/>(<span class="storeNumber"></span>)</b> <div class="StoreContentBlock"> <span class="storeAddr"></span><br> <span class="storeCity"></span> <span class="storeState"></span> <span class="storeZip"></span><br> </div> </td> <td width="25%"> <div class="StoreContentBlock" style="align:center;"> <img src="/web/20130518184243im_/http://www.publix.com/images/icon/icon_car.gif" alt="by Car" height="16" width="20"> <span class="storeDistance"></span> miles </div> </td> <td width="25%"> <div class="StoreContentBlock"> <a id="PublixStore" onclick="setPublixStoreCookie(this,7);"> <img src="/web/20130518184243im_/http://www.publix.com/images/ecms/btn/select_store.gif" alt="Select Store" height="21" width="87"> </a> </div> </td> </tr> </tbody> </table> </div> <div id="StoreDetails1of5" name="StoreDetails1of5" style="display:none;"></div> <div id="StoreDetails6of10" name="StoreDetails6of10" style="display:none;"></div> <div id="StoreDetails11of15" name="StoreDetails11of15" style="display:none;"></div> <div id="StoreDetails16of20" name="StoreDetails16of20" style="display:none;"></div> <div id="StoreDetails21of25" name="StoreDetails21of25" style="display:none;"></div> <div id="StoreDetails26of30" name="StoreDetails26of30" style="display:none;"></div> <div id="StoreDetails31of35" name="StoreDetails31of35" style="display:none;"></div> <div id="StoreDetails36of40" name="StoreDetails36of40" style="display:none;"></div> <div id="StoreDetails41of45" name="StoreDetails41of45" style="display:none;"></div> <div id="StoreDetails46of50" name="StoreDetails46of50" style="display:none;"></div> <div id="PrevNextLinks" name="PrevNextLinks" style="display:none;"></div> <div id="Showing" name="Showing" style="display:none;"> </div> </div> </div> </div> </div> <div id="localize" style="display:block"> <div class="location_false"> <form name="f_localize" id="f_localize" action="#"> <table cellspacing="0" cellpadding="0"> <tr> <td style="color: #fff;"> Select Your Store: </td> <td style="padding-left: 8px;vertical-align:middle;"> <input name="localize_zip" id="localize_zip" value="Enter a Zip Code or City, State" maxlength="32" onfocus="if(this.value == 'Enter a Zip Code or City, State') { this.value = ''; }" onblur="if(this.value == '') { this.value = 'Enter a Zip Code or City, State'; }" onchange="setLocalizeMainZip(this);"/> </td> <td style="padding-left: 8px;vertical-align:middle;"> <input type="image" id="btnSubmit2" src="/web/20130518184243im_/http://www.publix.com/images/headers/btn_go.gif" class="btn_submit" onclick="locateStore();" style="display:inline;"/> </td> </tr> </table> </form> </div> <div class="location_true"> My Store: <a href="javascript:void(0)" id="btn_localstore"><span id="nameTitle"></span></a> <a href="javascript:void(0)" id="btn_change_location">Change</a> <div class="store_info"> <h4><span id="name" style="text-transform: capitalize"></span> <br/><span id="number" style="text-transform: capitalize"></span> </h4> <p><span id="address"></span><br/> <span id="city"></span>, <span id="stateAbbr"></span> <span id="zip"></span></p> <p class="phone"> Main: <span id="phoneMain"></span><br/> <span id="phonePharmacy"></span></p> <h5>Store Hours:</h5> <p><span id="storeHours"></span> </p> <p> <span id="pharmacyHours"></span></p> <div class="buttons"> <a href="javascript:void(0);" id="DrivingDirections" onclick="viewDrivingDirections(this);">Driving Directions</a> <a href="javascript:void(0);" id="WeeklyAd" onclick="viewWeeklyAd(this);">Weekly Ad</a> </div> </div> </div> </div> <div id="user_menu"> <div class="user_false">Welcome, Guest | <a href="https://web.archive.org/web/20130518184243/https://www.publix.com/mypublix/Register.do">Sign Up</a> | <a href="https://web.archive.org/web/20130518184243/https://www.publix.com/mypublix/LoginForm.do">Login</a></div> <div class="user_true" style="display: none;"> Welcome, <span id="publixCustomerFirstName"></span> <span id="btn_mypublix"> | <a href="/web/20130518184243/http://www.publix.com/mypublix/Home.do?referrer=/mypublix/Home.do">My Publix</a> <ul id="menu_mypublix"> <li><a href="/web/20130518184243/http://www.publix.com/mygrocerylist/SavedList.do">Grocery Lists</a></li> <li><a href="/web/20130518184243/http://www.publix.com/mypublix/ApronsRecipes.do">Simple Meals</a></li> <li><a href="/web/20130518184243/http://www.publix.com/mypublix/Events.do">Event Planning</a></li> <li><a href="/web/20130518184243/http://www.publix.com/aprons/schools/MyCookingSchool.do">Cooking School</a></li> <li><a href="/web/20130518184243/http://www.publix.com/clubs/ClubsAndPrograms.do">Clubs & Programs</a></li> <li><a href="/web/20130518184243/http://www.publix.com/mypublix/Home.do">My Profile</a></li> </ul> </span> | <a href="/web/20130518184243/http://www.publix.com/mypublix/Logout.do">Logout</a></div> </div> </div> </div> </div> <table width="1000" border="0" cellspacing="0" cellpadding="0" align="center" style="margin: 0 auto;"> <tr> <td> <a name="top"></a> <div id="utilNav"> <p> <a href="/web/20130518184243/http://www.publix.com/Home.do">Home</a><img src="/web/20130518184243im_/http://www.publix.com/images/common/utilnav_dot_divider.gif" alt="" width="16" height="11"/><a href="https://web.archive.org/web/20130518184243/http://store.publix.com/publix" onclick="javascript:urchinTracker ('/offsite/store_locator');"><nobr>Store Locator</nobr></a><img src="/web/20130518184243im_/http://www.publix.com/images/common/utilnav_dot_divider.gif" alt="" width="16" height="11"/><a id="weeklyAds" class="weeklyAds" onclick="javascript:viewWeeklyAds();urchinTracker ('/offsite/weekly_ad_home');">Weekly Ads</a><img src="/web/20130518184243im_/http://www.publix.com/images/common/utilnav_dot_divider.gif" alt="" width="16" height="11"/><a href="/web/20130518184243/http://www.publix.com/coupon/Home.do">Coupons</a><img src="/web/20130518184243im_/http://www.publix.com/images/common/utilnav_dot_divider.gif" alt="" width="16" height="11"/><a href="/web/20130518184243/http://www.publix.com/services/gift/GiftCertificates.do"><nobr>Gift Cards</nobr></a><img src="/web/20130518184243im_/http://www.publix.com/images/common/utilnav_dot_divider.gif" alt="" width="16" height="11"/><a href="/web/20130518184243/http://www.publix.com/contact/ContactUs.do"><nobr>Contact Us</nobr></a><img src="/web/20130518184243im_/http://www.publix.com/images/common/utilnav_dot_divider.gif" alt="" width="16" height="11"/><a href="/web/20130518184243/http://www.publix.com/mygrocerylist/List.do" class="ON"><nobr>My Grocery List </nobr><span id="mainNavNumberOfItemsOnList">(0)</span></a><a href="/web/20130518184243/http://www.publix.com/mygrocerylist/List.do"></a> </p> </div> <div id="searchNav"> <div id="searchNavForm"> <form name="SearchForm" method="post" action="/web/20130518184243/http://www.publix.com/search/SearchResults.do"> <input type="hidden" name="startIndex" value="0"> <input type="hidden" name="numResults" value="10"> <input type="text" name="searchTerm.searchTerm" maxlength="100" value="Search" onfocus="if(this.value == 'Search') { this.value = ''; }" class="width:120px"> <select name="indexName"><option value="fullSite">Entire Site</option> <option value="aprons">Aprons Simple Meals</option> <option value="wellness">Wellness & Pharmacy</option> <option value="preschool">Preschool Pals</option> <option value="wine">Wine</option></select> <a href="javascript:this.document.SearchForm.submit()"><img src="/web/20130518184243im_/http://www.publix.com/images/headers/btn_search.gif" width="20" height="20" alt="Go"/></a> </form> </div> <div id="searchNavLogo"> <a href="/web/20130518184243/http://www.publix.com/Home.do"><img src="/web/20130518184243im_/http://www.publix.com/images/common/publixLogo.gif" alt="Publix"/></a> </div> </div> <div id="mainNav"><p><nobr><a href="/web/20130518184243/http://www.publix.com/wellness/Home.do" alt=""><img src="/web/20130518184243im_/http://www.publix.com/images/nav/wellness_OFF.gif" height="22" width="63" name="menu0" alt="" onmouseout="hideMenu(event)" onmouseover="showMenu(event)" id="menu0" border="0"></a><a href="/web/20130518184243/http://www.publix.com/pharmacy/Home.do" alt=""><img src="/web/20130518184243im_/http://www.publix.com/images/nav/pharmacy_OFF.gif" height="22" width="69" name="menu9" alt="" onmouseout="hideMenu(event)" onmouseover="showMenu(event)" id="menu9" border="0"></a><a href="/web/20130518184243/http://www.publix.com/save/Home.do" alt=""><img src="/web/20130518184243im_/http://www.publix.com/images/nav/nav_save_here_OFF.gif" height="22" width="65" name="menu8" alt="" onmouseout="hideMenu(event)" onmouseover="showMenu(event)" id="menu8" border="0"></a><a href="/web/20130518184243/http://www.publix.com/featured/FeaturedProduct.do" alt=""><img src="/web/20130518184243im_/http://www.publix.com/images/nav/featured_product_OFF.gif" height="22" width="113" name="menu1" alt="" onmouseout="hideMenu(event)" onmouseover="showMenu(event)" id="menu1" border="0"></a><a href="/web/20130518184243/http://www.publix.com/services/Services.do" alt=""><img src="/web/20130518184243im_/http://www.publix.com/images/nav/services_OFF.gif" height="22" width="57" name="menu2" alt="" onmouseout="hideMenu(event)" onmouseover="showMenu(event)" id="menu2" border="0"></a><a href="/web/20130518184243/http://www.publix.com/clubs/ClubsAndPrograms.do" alt=""><img src="/web/20130518184243im_/http://www.publix.com/images/nav/clubs_and_programs_OFF.gif" height="22" width="122" name="menu3" alt="" onmouseout="hideMenu(event)" onmouseover="showMenu(event)" id="menu3" border="0"></a><a href="/web/20130518184243/http://www.publix.com/food/Home.do" alt=""><img src="/web/20130518184243im_/http://www.publix.com/images/nav/food_and_entertaining_OFF.gif" height="22" width="130" name="menu4" alt="" onmouseout="hideMenu(event)" onmouseover="showMenu(event)" id="menu4" border="0"></a><a href="/web/20130518184243/http://www.publix.com/aprons/Home.do" alt=""><img src="/web/20130518184243im_/http://www.publix.com/images/nav/aprons_OFF.gif" height="22" width="56" name="menu5" alt="" onmouseout="hideMenu(event)" onmouseover="showMenu(event)" id="menu5" border="0"></a><a href="/web/20130518184243/http://www.publix.com/about/AboutPublix.do" alt=""><img src="/web/20130518184243im_/http://www.publix.com/images/nav/about_publix_OFF.gif" height="22" width="88" name="menu6" alt="" onmouseout="hideMenu(event)" onmouseover="showMenu(event)" id="menu6" border="0"></a><a href="/web/20130518184243/http://www.publix.com/careers/Home.do" alt=""><img src="/web/20130518184243im_/http://www.publix.com/images/nav/careers_OFF.gif" height="22" width="56" name="menu7" alt="" onmouseout="hideMenu(event)" onmouseover="showMenu(event)" id="menu7" border="0"></a></nobr></p> </div> <script> $().ready(function() { $.ajaxSettings.cache = false; $('a#weeklyAds').css('cursor','hand'); $('a#weeklyAds').css('cursor','pointer'); if ($.cookie('PublixStore')) { //If there is a PublixStore cookie, use it to set the Weekly Ads ID in the header. When user clicks Weekly Ads, they'll be taken to the Ads site with this store in the URL. $('a.weeklyAds').attr('id',$.cookie('PublixStore')); } }); </script> <!-- MAIN CONTENT TABLE --> <table cellspacing="0" cellpadding="0" border="0" width="100%"> <tr> <td width="10"><img src="/web/20130518184243im_/http://www.publix.com/images/common/clear.gif" alt="" width="10" height="1"></td> <!-- CENTER CONTENT --> <td valign="top" width="100%"> <div id="mainMGLContainer"> <div id="mainMGLHeaderContainer"> <div id="mainMGLHeader"><img src="/web/20130518184243im_/http://www.publix.com/images/my_shopping_list/hdr/main_my_grocery_list.gif" width="190" height="41" alt="My Grocery List"></div> <div id="mainMGLTabsContainer"> <ul class="top"> <li><a class="get_started ON" href="/web/20130518184243/http://www.publix.com/mygrocerylist/GetStarted.do"></a></li> <li><a class="current_list" href="/web/20130518184243/http://www.publix.com/mygrocerylist/List.do"></a></li> </ul> </div> <div id="mainMGLContent"> <a href="/web/20130518184243/http://www.publix.com/mygrocerylist/PrepareLoginForward.do?target=GetStarted">Login</a> or <a href="/web/20130518184243/http://www.publix.com/mygrocerylist/RegistrationForward.do?target=GetStarted">register</a> to see saved lists </div> <div id="needHelp"> <a href="/web/20130518184243/http://www.publix.com/GroceryListHelp.do"><img src="/web/20130518184243im_/http://www.publix.com/images/my_shopping_list/btn/need_help.gif" width="80" height="19" alt="Need Help?"></a> </div> <div class="clearBoth"></div> </div><!-- END mainMGLHeaderContainer --> <div id="mainMGLHeaderBottom"></div> <div id="MGLLandingMainContentContainer"> <div id="MGLWidgetContainer"> <img src="/web/20130518184243im_/http://www.publix.com/images/my_shopping_list/hdr/widget_my_grocery_list.gif" width="212" height="35" alt="My Grocery List" style="display:block;"> <div id="MGLWidgetAddItemContainer"> <form id="addToListForm" action="#"> <input type="text" id="nounRemote" style="vertical-align:middle; width:111px;" value="Type item here" onclick="clearPrompt();"/> <input type="image" id="addToListButton" src="/web/20130518184243im_/http://www.publix.com/images/my_shopping_list/btn/add_item.gif" width="72" height="21" alt="Add Item" class="valignMiddle"/> </form> </div> <div id="groceryList"> <div id="groceryListItems"> Please wait... </div> </div> </div><!-- END MGLWidgetContainer --> <div id="MGLLandingMainContent"> <table cellspacing="0" cellpadding="0" height="100%"> <tr valign="top"> <td> <img src="/web/20130518184243im_/http://www.publix.com/images/my_shopping_list/main_my_grocery_list_01.jpg" alt="Publix Grocery List" width="200" height="230"> </td> <td><img src="/web/20130518184243im_/http://www.publix.com/images/my_shopping_list/spacer.gif" width="30" height="1"></td> <td width="50%"> <br/><br/> <p><br/> Now it's easier than ever to manage your grocery shopping at Publix.</p> <p>Simply add items to your grocery list by following the highlighted links below or by typing any item you need directly into your list.</p> <p>Then select the Publix you intend to shop and we'll show you where most items are in your store by department or aisle.</p> <p>So get started building your grocery list today!</p> </td> <td><img src="/web/20130518184243im_/http://www.publix.com/images/my_shopping_list/spacer.gif" width="30" height="1"></td> <td width="50%"> <br/><br/> <img src="/web/20130518184243im_/http://www.publix.com/images/my_shopping_list/hdr/hdr_helpful_tips.gif" width="87" height="19" alt="How Do I..."> <br/><br/> <p>Here's how to get the most out of your grocery list. Just select a topic for details on how to do the following:</p> <div style="FONT-SIZE: 11px; PADDING-BOTTOM: 6px"><a href="/web/20130518184243/http://www.publix.com/mygrocerylist/HelpfulTips.do#add-weeklyad-item">How to add items from the weekly ad.</a></div> <div style="FONT-SIZE: 11px; PADDING-BOTTOM: 6px"><a href="/web/20130518184243/http://www.publix.com/mygrocerylist/HelpfulTips.do#add-ingredients">How to add ingredients from recipes.</a></div> <div style="FONT-SIZE: 11px; PADDING-BOTTOM: 6px"><a href="/web/20130518184243/http://www.publix.com/mygrocerylist/HelpfulTips.do#add-storelocation-item">How to add items with store location.</a></div> <div style="FONT-SIZE: 11px; PADDING-BOTTOM: 6px"><a href="/web/20130518184243/http://www.publix.com/mygrocerylist/HelpfulTips.do#create-starter">How to create & use a Starter List.</a></div> <div style="FONT-SIZE: 11px; PADDING-BOTTOM: 6px"><a href="/web/20130518184243/http://www.publix.com/mygrocerylist/HelpfulTips.do#print-blank">How to print a blank grocery list.</a></div> <div style="FONT-SIZE: 11px; PADDING-BOTTOM: 6px"><a href="/web/20130518184243/http://www.publix.com/mygrocerylist/HelpfulTips.do#access-mobile">How to view on my mobile phone.</a></div> </td> </tr> </table> </div><!-- END MGLLandingMainContent --> </div><!-- END MGLLandingMainContentContainer --> <div class="clearBoth"></div> <div id="MGLLandingBottomContentContainer"> <table cellspacing="0" cellpadding="0" width="100%"> <tr valign="top"> <td id="MGLLandingBottomContent"> <div id="MGLLandingBottomHdr"> <img src="/web/20130518184243im_/http://www.publix.com/images/my_shopping_list/hdr/add_items_to_your_grocery_list.gif" width="296" height="19" alt="Add Items to Your Grocery List from..."> </div> <!-- START MGLLandingBottomContentTable --> <table cellspacing="0" cellpadding="0" width="100%" id="MGLLandingBottomContentTable"> <tr valign="top"> <td width="33%" class="borderRight"> <div class="MGLImageHdr"><img src="/web/20130518184243im_/http://www.publix.com/images/my_shopping_list/hdr/weekly_ad.gif" width="77" height="19" alt="Weekly Ad"></div> <p>Browse our latest ad and start saving!</p> <p><a href="https://web.archive.org/web/20130518184243/http://weeklyad.publix.com/"><img src="/web/20130518184243im_/http://www.publix.com/uploads/2011/weeklyad.jpg" alt="Publix Weekely Ads" width="120" height="126"></a></p> <ul class="arrows"> <li><a href="https://web.archive.org/web/20130518184243/http://weeklyad.publix.com/publix/new_user_entry.aspx?cattreeid=5117977&forceview=y">Buy One Get One Free</a></li> <li><a href="https://web.archive.org/web/20130518184243/http://weeklyad.publix.com/publix/new_user_entry.aspx?brandid=-2099978664&forceview=y">Publix Brand</a></li> <li><a href="https://web.archive.org/web/20130518184243/http://weeklyad.publix.com/publix/new_user_entry.aspx?cattreeid=5117976&forceview=y">Ad Coupons</a></li> </ul> </td> <td width="33%" class="borderRight"> <div class="MGLImageHdr"><img src="/web/20130518184243im_/http://www.publix.com/images/my_shopping_list/hdr/simple_meals_recipes.gif" width="156" height="19" alt="Simple Meals Recipe"></div> <p>Add items to your list from our featured recipes, or browse all Simple Meals</p> <table cellspacing="0" cellpadding="0" width="100%" class="MGLLandingSimpleMealsRecipes"> <tr valign="top"> <td width="50%"> <div id="featuredRecipe"> <a href="/web/20130518184243/http://www.publix.com/aprons/meals/AllRecipes/SimpleMeal.do?mealId=5048&mealGroupId=1000"><img src="/web/20130518184243im_/http://www.publix.com/managed_images/2010/Chicken_Manchego_115x115.jpg" alt="Chicken Manchego"/></a> <br><b>Recipe:</b><br> <a href="/web/20130518184243/http://www.publix.com/aprons/meals/AllRecipes/SimpleMeal.do?mealId=5048&mealGroupId=1000">Chicken Manchego</a> </div> </td> <td width="50%"> <div id="featuredRecipe"> <a href="/web/20130518184243/http://www.publix.com/aprons/meals/AllRecipes/SimpleMeal.do?mealId=4993&mealGroupId=1000"><img src="/web/20130518184243im_/http://www.publix.com/managed_images/2010/BBQ_PorkBBSouf_New_115x115.jpg" alt="Barbecue Pork Tenderloin With Vanilla Berry Souffl閟"/></a> <br><b>Recipe:</b><br> <a href="/web/20130518184243/http://www.publix.com/aprons/meals/AllRecipes/SimpleMeal.do?mealId=4993&mealGroupId=1000">Barbecue Pork Tenderloin With Vanilla Berry Souffl閟</a> <img src="/web/20130518184243im_/http://www.publix.com/images/aprons/common/icon_video.gif" align="absmiddle" alt="Video Available"> </div> </td> </tr> </table> <br/> <div style="float:left"> <ul class="arrows"> <li><a href="/web/20130518184243/http://www.publix.com/mypublix/ApronsRecipes.do">My Simple Meals</a></li> <li><a href="/web/20130518184243/http://www.publix.com/aprons/meals/SimpleMeals.do">View all Recipes</a></li> </ul> </div> <div style="float:right"><a href="/web/20130518184243/http://www.publix.com/aprons/meals/SimpleMeals.do"><img src="/web/20130518184243im_/http://www.publix.com/managed_images/2012/logo_simplemeals_onwhite.gif" alt="Publix Aprons Simple Meals"></a></div> </td> <td width="34%"> <div class="MGLImageHdr"><img src="/web/20130518184243im_/http://www.publix.com/images/my_shopping_list/hdr/featured_products.gif" width="133" height="19" alt="Featured Products"></div> <p>Get details on some of our exclusive or special products.</p> <p><a href="https://web.archive.org/web/20130518184243/http://www.publix.com/featured/ASP/flsweetcorn.do"><img src="/web/20130518184243im_/http://www.publix.com/managed_images/2013/sif5033370933047111061.jpg" alt="Florida Sweet Corn"></a></p> <p><a title="Florida Sweet Corn" href="https://web.archive.org/web/20130518184243/http://www.publix.com/featured/ASP/flsweetcorn.do">Florida Sweet Corn</a></p> <p>Super-sweet, hand-picked Florida sweet corn is at its peak of flavor and ripeness right now.</p> <ul class="arrows"> <li><a href="/web/20130518184243/http://www.publix.com/featured/FeaturedProduct.do">View all featured products</a></li> </ul> </td> </tr> </table><!-- END MGLLandingBottomContentTable --> </td> <td><img src="/web/20130518184243im_/http://www.publix.com/images/my_shopping_list/spacer.gif" width="1" height="1"></td> <td id="MGLLandingRightCalloutsContainer" width="212"> <div class="MGLLandingRightCallout"> <div class="MGLImageHdr"><img src="/web/20130518184243im_/http://www.publix.com/images/my_shopping_list/hdr/hdr_popular_list_items.gif" width="130" height="19" alt="Popular Items"></div> <p>Here's a list of frequently added items to Publix grocery lists to get started.</p> <div id="groceryListStarter"> <div id="groceryListStarterItems"> Please wait... </div> <a href="javascript:void(0);"><img src="/web/20130518184243im_/http://www.publix.com/images/my_shopping_list/btn/add_to_list.gif" id="submitGlStarterList" width="81" height="21" alt="Add to List"></a> </div> </div><!-- END MGLLandingRightCallout --> <div class="MGLLandingRightCallout"> <div class="MGLImageHdr"><a href="https://web.archive.org/web/20130518184243/http://print.coupons.com/alink.asp?go=14796tt4410"><img src="/web/20130518184243im_/http://www.publix.com/images/my_shopping_list/hdr/hdr_save_with_coupons.gif" width="156" height="19" alt="Save with Coupons"></a></div> <p>By clicking this link you will leave publix.com and enter the Coupons Inc. site they operate and control.</p> </div><!-- END MGLLandingRightCallout --> </td> </tr> </table> </div><!-- END MGLLandingBottomContentContainer --> </div><!-- END mainMGLContainer --> <!-- *********************************************************************************************************************************************************************** <!-- END JL UPDATES 12/2010: for "My Grocery List" ************************************************************************************************************************* <!-- *********************************************************************************************************************************************************************** --> </td> <!-- END CENTER CONTENT --> <td width="10"><img src="/web/20130518184243im_/http://www.publix.com/images/common/clear.gif" alt="" width="10" height="1"></td> </tr> </table> <!-- END MAIN CONTENT TABLE --> <div id="publix_footer"> <div class="link_list links_stores" id="doNotIndex"> <h3>STORES</h3> <ul> <li><a href="https://web.archive.org/web/20130518184243/http://store.publix.com/publix/">Find a Publix</a></li> <li><a href="https://web.archive.org/web/20130518184243/http://www.publix.com/pharmacy/Home.do">Publix Pharmacy</a></li> <li><a href="https://web.archive.org/web/20130518184243/http://www.publix.com/wellness/greenwise/products/Home.do">Publix GreenWise Market</a></li> <li><a href="https://web.archive.org/web/20130518184243/http://store.publix.com/publix/cgi/selection?design=default&lang=en&mapid=US&D=on">Publix Liquors</a></li> <li><a href="https://web.archive.org/web/20130518184243/http://store.publix.com/publix/cgi/selection?design=default&lang=en&mapid=US&special=3">Publix Pix</a></li> <li><a href="https://web.archive.org/web/20130518184243/http://store.publix.com/publix/cgi/selection?design=default&lang=en&mapid=US&special=2">Publix Sabor</a></li> </ul> </div> <div class="link_list links_save" id="doNotIndex"> <h3>SAVE HERE</h3> <ul> <li><a href="javascript:void(0);" onclick="javascript:viewWeeklyAds()">Weekly Ads</a></li> <li><a href="https://web.archive.org/web/20130518184243/http://www.publix.com/coupon/Home.do">Coupons</a></li> <li><a href="https://web.archive.org/web/20130518184243/http://www.publix.com/save/Publix-Brands.do">Publix Brand</a></li> <li><a href="https://web.archive.org/web/20130518184243/http://www.publix.com/save/Savings-Made-Easy.do">Savings Made Easy</a></li> </ul> </div> <div class="link_list links_products" id="doNotIndex"> <h3>PRODUCTS</h3> <ul> <li><a href="https://web.archive.org/web/20130518184243/http://www.publix.com/featured/FeaturedProduct.do">Featured Products</a></li> <li><a href="https://web.archive.org/web/20130518184243/http://www.publix.com/featured/AtSeasonsPeak.do">At Season's Peak</a></li> <li><a href="https://web.archive.org/web/20130518184243/http://www.publix.com/food/catalog/Bakery/Home.do">Publix Bakery Selections</a></li> <li><a href="https://web.archive.org/web/20130518184243/http://www.publix.com/food/catalog/Deli/Home.do">Publix Deli Selections</a></li> <li><a href="https://web.archive.org/web/20130518184243/http://www.publix.com/food/catalog/OtherSelections/Home.do">Meat, Seafood, & Produce</a></li> <li><a href="https://web.archive.org/web/20130518184243/http://www.publix.com/wellness/greenwise/products/Home.do">Publix GreenWise Market</a></li> <li><a href="https://web.archive.org/web/20130518184243/http://www.publix.com/wellness/food/nutrition-center/Nutrition-Information.do">Nutrition Information</a></li> <li><a href="https://web.archive.org/web/20130518184243/http://www.publix.com/about/newsroom/recalls/RecallList.do">Recalls</a></li> </ul> </div> <div class="link_list links_services" id="doNotIndex"> <h3>SERVICES</h3> <ul> <li><a href="https://web.archive.org/web/20130518184243/http://www.publix.com/pharmacy/refill/PrescriptionRefill.do">Prescription Refill</a></li> <li><a href="https://web.archive.org/web/20130518184243/http://www.publix.com/pharmacy/PrescriptionTransfer.do">Prescription Transfer</a></li> <li><a href="https://web.archive.org/web/20130518184243/http://www.publix.com/pharmacy/Free-Medications.do">Free Medications</a></li> <li><a href="https://web.archive.org/web/20130518184243/http://www.publix.com/pharmacy/CholesterolScreening.do">Health Screenings</a></li> <li><a href="https://web.archive.org/web/20130518184243/http://www.publix.com/services/gift/GiftCertificates.do">Publix Gift Cards</a></li> <li><a href="https://web.archive.org/web/20130518184243/http://www.publix.com/aprons/events/Home.do">Aprons Event Planning</a></li> <li><a href="https://web.archive.org/web/20130518184243/http://www.publix.com/aprons/meals/SimpleMeals.do">Aprons Recipes</a></li> <li><a href="https://web.archive.org/web/20130518184243/http://www.publix.com/services/Special-Item-Requests.do">Special Item Requests</a></li> </ul> </div> <div class="link_list links_corporate" id="doNotIndex"> <h3>CORPORATE</h3> <ul> <li><a href="https://web.archive.org/web/20130518184243/http://www.publix.com/about/CompanyOverview.do">Company Overview</a></li> <li><a href="https://web.archive.org/web/20130518184243/http://www.publix.com/about/newsroom/NewsRoom.do">News Room</a></li> <li><a href="https://web.archive.org/web/20130518184243/http://www.publixstockholder.com/servlet/ProxyServlet?path=/stockholder/Home.do">Stockholder Information</a></li> <li><a href="https://web.archive.org/web/20130518184243/http://www.publix.com/realestate/Home.do">Publix Real Estate</a></li> <li><a href="https://web.archive.org/web/20130518184243/http://www.publix.biz/biz/Home.do">Publix Purchasing</a></li> <li><a href="https://web.archive.org/web/20130518184243/http://www.publix.com/careers/Home.do">Careers</a></li> <li><a href="https://web.archive.org/web/20130518184243/http://www.publix.com/contact/SendUsAMessage.do">Contact Us</a></li> </ul> </div> <div class="callout"> <a href="https://web.archive.org/web/20130518184243/http://www.publix.com/Mobile.do"><img src="/web/20130518184243im_/http://www.publix.com/images/headers/mobil_app.gif" alt=""/></a> <p>We've got all the <br>on-the-go solutions you're looking for right here. </p> </div> <div style="clear: both; height: 20px; border-top: 1px solid #dfe1ab;"></div> <div class="copyright"> <p>© Publix Asset Management Company 2013. All rights Reserved. <a href="/web/20130518184243/http://www.publix.com/TermsOfUse.do"><u>Terms of Use</u></a> | <a href="/web/20130518184243/http://www.publix.com/PrivacyPolicy.do"><u>Privacy Policy</u></a> | <a href="/web/20130518184243/http://www.publix.com/SiteMap.do"><u>Site Map</u></a></p> <p>Publix is an equal opportunity employer committed to a diverse workforce</p> </div> <div class="connect"> connect with us <a href="https://web.archive.org/web/20130518184243/http://facebook.com/publix" target="_blank"><img src="/web/20130518184243im_/http://www.publix.com/images/headers/icon_facebook.png" alt="Connect with us on Facebook" height="16" width="16"/></a> <a href="https://web.archive.org/web/20130518184243/http://youtube.com/publix" target="_blank"><img src="/web/20130518184243im_/http://www.publix.com/images/headers/icon_youtube.png" alt="Connect with us on Youtube" height="16" width="16"/></a> <a href="https://web.archive.org/web/20130518184243/http://twitter.com/publix" target="_blank"><img src="/web/20130518184243im_/http://www.publix.com/images/headers/icon_twitter.png" alt="Connect to Twitter @Publix" height="16" width="16"/></a> </div> <div style="clear: both; height: 1px;"></div> </div> </td> </tr> </table> </body></html> <!-- FILE ARCHIVED ON 18:42:43 May 18, 2013 AND RETRIEVED FROM THE INTERNET ARCHIVE ON 01:41:49 Feb 18, 2025. JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE. ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C. SECTION 108(a)(3)). --> <!-- playback timings (ms): captures_list: 0.557 exclusion.robots: 0.025 exclusion.robots.policy: 0.016 esindex: 0.01 cdx.remote: 3.836 LoadShardBlock: 420.531 (6) PetaboxLoader3.datanode: 341.912 (7) load_resource: 156.829 PetaboxLoader3.resolve: 115.754 -->