' + businessHourM2FText + '
?
Saturday
' + '' + businessHourSATText + '
' + '?
Sunday
' + '' + businessHourSUNText + '
'; isRolloverShown = true; setHideTimer(MIN_DISPLAY_TIME); resetRollover(); WALMART.$("#ROLLOVER_PICKUP_HOUR").show(); WALMART.$("#ROLLOVER_PICKUP_HOUR").html( pickupHourInfo); WALMART.$('#ROLLOVER').wmBubble('position',{top:(y-114),left:x}); WALMART.$('#ROLLOVER').wmBubble('update',WALMART.$('#ROLLOVER').html()); WALMART.$('#ROLLOVER').wmBubble('show'); } else { pickupHourInfo = 'Please call for store hours.
'; isRolloverShown = true; setHideTimer(MIN_DISPLAY_TIME); resetRollover(); WALMART.$("#ROLLOVER_PICKUP_HOUR").show(); WALMART.$("#ROLLOVER_PICKUP_HOUR").html(pickupHourInfo); WALMART.$('#ROLLOVER').wmBubble('position',{top:(y-38),left:x}); WALMART.$('#ROLLOVER').wmBubble('update',WALMART.$('#ROLLOVER').html()); WALMART.$('#ROLLOVER').wmBubble('show'); } } function generateBusinessHourText(businessHour) { if (businessHour) { openTime = businessHour.openTime; closeTime = businessHour.closeTime; if ((openTime == '-1:-1 am' || openTime == '00:00 am') && closeTime == '00:00 am') { return 'Closed'; } else if (openTime == '00:00 am' && (closeTime == '11:59 pm' || closeTime == '-1:-1 am')) { return 'Open 24 hours'; } else { return openTime + ' ? ' + closeTime; } } } /* * This method added for VIBS project which used to show online price tooltip. */ function showOnlinePriceOverlayRollover(e) { var onliePriceTipContent = 'In-store prices vary from online prices - please visit your store for exact pricing. Online prices are not honored in our stores.' isRolloverShown = true; setHideTimer(MIN_DISPLAY_TIME); resetRollover(); WALMART.$('#ROLLOVER_OTHER_TEXT').show(); WALMART.$('#ROLLOVER_OTHER_TEXT').html(onliePriceTipContent); e = (e) ? e : ((event) ? event : "") WALMART.$('#ROLLOVER').wmBubble('position',{top:getY(e) - 25,left:getX(e)}); WALMART.$('#ROLLOVER').wmBubble('update',WALMART.$('#ROLLOVER').html()); WALMART.$('#ROLLOVER').wmBubble('show'); } var isRolloverShown = false; var rolloverIndex = 0; function showPreferredStoreRollover(e, ind) { var slapStoresData = WALMART.bot.stores; var spulStoresData = WALMART.spul.stores; var storesData = (typeof slapStoresData !== 'undefined' && slapStoresData && slapStoresData != '' && slapStoresData.stores != '') ? slapStoresData : spulStoresData; if (storesData != null && storesData.stores != null && storesData.stores != '' && (!isRolloverShown || rolloverIndex != ind)) { rolloverIndex = ind; isRolloverShown = true; setHideTimer(MIN_DISPLAY_TIME); e = (e) ? e : ((window.event) ? window.event : "") var el = e.target; var storeIndex = ind - 1; resetRollover(); if(storesData.stores[storeIndex]!= undefined && storesData.stores[storeIndex].address != undefined ){ WALMART.$('#ROLLOVER_CITY').show(); WALMART.$('#ROLLOVER_ADDR1').show(); WALMART.$('#ROLLOVER_ADDR2').show(); WALMART.$('#ROLLOVER_CITY').html( storesData.stores[storeIndex].address.city); WALMART.$('#ROLLOVER_ADDR1').html(storesData.stores[storeIndex].address.fullStreet); WALMART.$('#ROLLOVER_ADDR2').html(storesData.stores[storeIndex].address.city + ", " + storesData.stores[storeIndex].address.stateCode + " " + storesData.stores[storeIndex].address.zipCode); WALMART.$('#ROLLOVER').wmBubble('position',{top:findPosY(el) - 66,left:findPosX(el)}); WALMART.$('#ROLLOVER').wmBubble('update',WALMART.$('#ROLLOVER').html()); WALMART.$('#ROLLOVER').wmBubble('show'); } } } function showSelectedStoreRollover(e, city, fullstreet, zip, state) { // if (store!=null ){ //rolloverIndex=ind; isRolloverShown = true; setHideTimer(MIN_DISPLAY_TIME); e = (e) ? e : ((window.event) ? window.event : "") resetRollover(); WALMART.$('#ROLLOVER_CITY').show(); WALMART.$('#ROLLOVER_ADDR1').show(); WALMART.$('#ROLLOVER_ADDR2').show(); WALMART.$('#ROLLOVER_CITY').html(city);//store.address.city; WALMART.$('#ROLLOVER_ADDR1').html(fullstreet);//store.address.fullStreet; WALMART.$('#ROLLOVER_ADDR2').html(city + ", " + state + " " + zip); WALMART.$('#ROLLOVER').wmBubble('position', {top: getY(e),left: getX(e)}); WALMART.$('#ROLLOVER').wmBubble('update', WALMART.$('#ROLLOVER').html()); WALMART.$('#ROLLOVER').wmBubble('show'); } function showSOIRollover(e, desc) { showRollover(e, desc); } function hideRollover(e) { WALMART.$('#ROLLOVER').wmBubble('hide'); isRolloverShown = false; clearTimeout(hideTimer); } function resetRollover() { WALMART.$("#ROLLOVER_CITY").hide(); WALMART.$("#ROLLOVER_ADDR1").hide(); WALMART.$("#ROLLOVER_ADDR2").hide(); WALMART.$("#ROLLOVER_OTHER_TEXT").hide(); WALMART.$("#ROLLOVER_CLOSE").hide(); WALMART.$("#ROLLOVER_PICKUP_HOUR").hide(); } var hideTimer; function setHideTimer(elapseVal) { clearTimeout(hideTimer); hideTimer = setTimeout("hideRollover()", elapseVal); } var isOpera = (navigator.userAgent.indexOf('Opera') != -1); var isIE = (!isOpera && navigator.userAgent.indexOf('MSIE') != -1) function getX(e) { var posx; if (e.pageX) { posx = e.pageX; } else if (e.clientX) { posx = e.clientX; if (isIE) { posx += top.document.documentElement.scrollLeft + top.document.body.scrollLeft; } } return posx; } function getY(e, offset) { var defaultOffset = 66; var posy; if (e.pageY) { posy = e.pageY; } else if (e.clientY) { posy = e.clientY; if (isIE) { posy += top.document.documentElement.scrollTop + top.document.body.scrollTop; } } if (offset == undefined) { posy -= defaultOffset; } else { posy -= offset } return posy; } /*START S2S small format Changes */ function showExpressContentRollover(x, y) { expressStoreInfo = 'Our newest addition,
' +'Walmart Express, delivers
' +'Every Day Low Prices in a
' +'small store that is easy to shop.
'; isRolloverShown = true; setHideTimer(MIN_DISPLAY_TIME); resetRollover(); WALMART.$("#ROLLOVER_OTHER_TEXT").show(); WALMART.$("#ROLLOVER_OTHER_TEXT").html(expressStoreInfo); WALMART.$('#ROLLOVER').wmBubble('position', {top:(y-85),left:x}); WALMART.$('#ROLLOVER').wmBubble('update', WALMART.$('#ROLLOVER').html()); WALMART.$('#ROLLOVER').wmBubble('show'); }/*END S2S small format Changes */We're Sorry, This Item is Out of Stock.
Loading...
Loading...
Loading...
- Recently Viewed Items
- You don't have any recently viewed items
- Top Searched Items in Computers
- Other Related Searches
- ?
- ? Store pickup - Select option(s) above to see your pickup
choices.
- ? Free store pickup with
- ? Free store pickup with near:
Getting the products you need is even easier with our free pickup options. Just give us your ZIP code, select a preferred store, and we\'ll be able to tell you what items are available to pick up today or can be shipped to your local store ? free.
- ? Free pickup from a store or FedEx Office?
Shipping this to your store will take 5-10 business days.
Check More Stores to see if it's available sooner.Shipping this to your store or FedEx Office will take 5-10 business days.
Check More Stores to see if it's available sooner. - ? Free store pickup
-
? Free store pickup in [Store location]
-
? Electronic delivery via email after purchase
??
This home free?item counts towards free shipping on a qualifying $45 orderShop for items labeled home free. When you spend $45 on Home Free items, you'll get free shipping on those items.
????Free standard shipping on eligible
$45 orders with home free????97? shipping
????Free Shipping
- Electronic delivery via email after purchase
-
?
- Store information not available.
- Store information not available.
Please visit your local store to see if this item is in stock.
? Ship to home is not available for this product.
Online
$199.99
List Price: $279.99
You Save: $80.00?(29%)
Please select your options before adding to cart
Please select your options before adding to cart
Please select your options before adding to cart
Not Available at this time
In stock for:
Out of stock online Email me when in stock
Coming Soon
Preorder Now
Preorders Sold Out
Please check back on or after .
Please enter a valid 5-digit ZIP Code.
* This item is being discontinued. Availability is limited.
Out of stock for shipping to home.
Please enter a valid 5-digit ZIP Code.
Show this number 0088740102167?to a Walmart associate to find this item in your store.
Product availability, styles, promotions and prices may vary between stores and online. Product availability, styles, promotions and prices may vary between stores and online.
Order now and we'll send you an email or a text when it's ready to pick up.
Not ready to come in today? Don't worry - we'll hold it for 14 days.
Surf the Internet, draft important emails and enjoy your favorite apps with the refurbished Acer Iconia Tab with WiFi 10.1" Touchscreen Tablet PC. Featuring Android 4.0 (Ice Cream Sandwich) OS, 16GB of internal storage, 1280 x 800 resolution and 802.11b/g/n WiFi, this tablet PC combines great performance and mobility. Stay connected, wherever you are.
Acer Iconia Tab with WiFi 10.1" Touchscreen Tablet PC:
Technical Specifications:
- 1.20GHz NVIDIA Tegra 3 Quad-Core Mobile processor
- 1GB DDR3 of system memory and 16GB on-board storage memory
- 10.1" touchscreen, 1280 x 800 resolution, virtual keyboard with Swype
- Built-in 802.11b/g/n WiFi
- Front facing camera
- Built-in microphone
- 16GB on-board storage memory, additional memory via microSD card slot
- GPS
- Android 4.0 OS (Ice Cream Sandwich)
What's a Tablet PC?
Tablet PCs are compact, ultra-portable entertainment devices that let you read email, surf the internet, read eBooks, view photos, play games, listen to music and watch video files. Most tablets are based on a smaller operating system, which allows you to purchase and download additional applications from supported stores. Tablet PCs do not have a CD/DVD drive and will not run Microsoft Windows or its applications. Tablet PCs function as a secondary device for casual entertainment purposes, and are not meant to replace a computer. They are ideal for use around the home and on the go with Wi-Fi or 3-4g mobile broadband connections (pay as you go, contract may be required for service).
Platform: | Android |
Primary Color: | Gray |
Processor Brand: | NVIDIA |
Processor Type: | NVIDIA Tegra 3 T30L Quad-Core Processor |
Processor Speed: | 1.20 GHz |
System Ram: | 1 GB |
Hard Drive Size: | N/A |
Laptop Screen Size: | N/A |
Screen Type: | Multi-touch Display |
Battery Type: | Lithium Ion |
Network Connection: | 802.11b/g/n Wireless LAN |
Connector Type: | 1 x MicroUSB 2.0 |
Operating System: | Google Android |
Accessories Included: | AC Adapter |
Operating System Version: | Android 4.0 Ice Cream Sandwich |
Model No.: | A210-10g16u |
Shipping Weight (in pounds): | 1.64 |
Product in Inches (L x W x H): | 13.0?x?11.6?x?2.0 |
Walmart No.: | 551134752 |
Rated 4.3 out of 5 by 7reviewers.
Rated 5 out of 5 by dave2144 `GREAT TABLET GREAT VALUE. SAME QUALITY AS TABLETS SELLING FOR TWICE THE PRICE. ONE OF THE FASTEST TABLETS AROUND QUAD CORE . SUPER BRIGHT CLEAR SCREEN. WI FI CONECTS INSTANTLY. TOUCH SCREEN IS ONE OF THE BEST. WE BOUGHT TWO. YOU WILL BE SATISFIED. ACER MAKES A GOOD PRODUCT 02/18/2013
Rated 1 out of 5 by Larzen Avoid Acer products Avoid the Acer A500 Tablet (and perhaps all Acer products). My A500 power switch was never soldered to the motherboard and as such became completely disconnected. 2 different professional techs informed me that this was a manufacturing defect . since it was 13 months old Acer refused to stand behind its product. They will only repair it for $199 plus shipping costs. Even though 2 professional repair tech assured me that the problem was due to a manufacturing defect. Even the tech I spoke to at acer.mytechhelp.com told me "... it was a built in design flaw , because that way consumers would have to replace their tablets. 02/12/2013
See All Reviews Walmart Product Care PlansA limited product warranty is included free for most items. With an optional Walmart Care Plan you can extend coverage up to 3 additional years. Walmart Care Plan Extended Warranties cover 100% of the cost for repair or replacement, including shipping charges for the exchange. See Details
We'll show you extended warranty options and pricing at checkout if applicable.
If you made your purchase in a Walmart store and would like to purchase a warranty Click HereGift options are not available for this item.
Enjoy Great Financing!
Make the most of your shopping experience with the Walmart Discover? or Walmart Credit Card.
Open a Walmart Credit Card, Spend $100 Today and Get $20 Back*
*Offer subject to credit approval
Learn More or Apply Now
No Payments + No Interest if Paid in Full in 6 Months!
Enjoy no payments for 6 months. You'll have 6 months with no payments, and no interest if paid in full within 6 months on orders over $250. Otherwise, interest will be charged from the original date of purchase. Bill Me Later is the quick, easy, secure way to buy online without using your credit card. Simply select Bill Me Later at checkout. Subject to credit approval.
See Terms
ew388
/catalog/product.do, /catalog/fusionItem.do
/include/dynamic/tiles/templates/item/fusionItem.jsp
orrin hatch marlon byrd charles colson humber raffi torres michael mcdonald jon jones vs rashad evans
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.