' + 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
- Clear this list
- Recently Viewed Items
- You don't have any recently viewed items
- Top Searched Items in Computers
- ?Store pickup - Select option(s) above to see your pickup
choices.
- ?Free shipping to store Find
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 shipping to store and FedEx Office? locations
- Order now and this item will be ready for pickup within 5-10 business days
- We'll send you an email/text message when it's ready
- We'll hold your order for 14 days. If you don't make it to the store by the deadline, we'll cancel the order and refund your method of payment
- Please call your store for exact pickup hours
- Order now and this item will be ready for pickup within 5-10 business days
- We'll send you an email/text message when it's ready
- FedEx Office will hold your order for 5 days. If you don't make it to the store by the deadline, we'll cancel the order and refund your method of payment.
- Please call the FedEx Office location for exact pickup hours
- ?Free shipping to store with Site to Store
- Will not arrive by Dec 24
- Order now and this item will be ready for pickup within 4 hours (Orders after 6pm ready for store pickup tomorrow)
- We'll send you an email/text message when it's ready
- We'll hold your order for 7 days. If you don't make it to the store by the deadline, we'll cancel the order and refund your method of payment
- Please call your store for exact pickup hours
- ?
-
?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.
?Ship to home
??-?$45 order of Home Free items??-?97? shipping
??-?Free Shipping
- Electronic delivery via email after purchase
-
?
- Will arrive on or before Dec 24
?Ship to home is not available for this product.
- Store information not available.
Online
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.
Please select your options before adding to cart
Please select your options before adding to cart
Please select your options before adding to cart
* This item is being discontinued. Availability is limited.
Out of stock for shipping to home.
Please enter a valid 5-digit ZIP Code.
- Store information not available.
Please visit your local store to see if this item is in stock.
Show this number 0087793500239?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.
At just under one pound, the sleek Cruz Tablet goes everywhere you do and fits perfectly in one hand. Use the built-in Kindle bookstore app to download and read over 700,000 eBooks in a light and convenient package. Staying up-to-date with email and social networks is just a Wi-Fi hotspot away, thanks to the Cruz Tablet's 802.11n Wi-Fi and full browser support. You can even load your Cruz Tablet's 2GB of internal storage up with all your favorite music and movies to make it a completely mobile media device!
At just under one pound, the sleek Cruz Tablet goes everywhere you do and fits perfectly in one hand. Use the built-in Kindle bookstore app to download and read over 700,000 eBooks in a light and convenient package. Staying up-to-date with email and social networks is just a Wi-Fi hotspot away, thanks to the Cruz Tablet's 802.11n Wi-Fi and full browser support. You can even load your Cruz Tablet's 2GB of internal storage up with all your favorite music and movies to make it a completely mobile media device!Technical Specifications:
800 x 600 pixel resolution and built-in, tilt-activated accelerometer will flip the page display from portrait to landscape and back when you turn the device.
Handling the needs of Android OS and Apps
SD Card slot for upto 32GB Storage
Additional Features:
Software
Warranty & Support
To learn more about Tablet PCs and what they can do for you, click here.
Battery Type: | Lithium Ion |
Primary Color: | Black |
Multi Pack Indicator: | No |
Model No.: | T301-2GB |
Shipping Weight (in pounds): | 15.0 |
Product in Inches (L x W x H): | 7.5?x?0.57?x?5.6 |
Walmart No.: | 550151695 |
Velocity Micro Cruz 2GB T301 7" Capacitive Color Touchscreen Entertainment Tablet & eBook Reader with Google Android 2.0 OS 4 5
Very happy with product more then expected for the price. 12/13/2011
I loved IT!!!!! This is amazing tablet!! Great price, so portable,light and so useful!! I can use it anywhere, anytime, and anyplace!!The apps work great and I LOVE TO READ ON THIS TABLET!!!!!!This is an "sparkling tablet" I LOVE IT!! 12/18/2011
IT'S OK FOR A KID BUT NOT AN ADULT I BOUGHT THIS FOR MY 7 YR OLD SON. I GOT IT LAST THURSDAY AND OPENED IT UP TO CHECK IT OUT THIS SATURDAY. EVERYTHING WAS GOING FINE UNTIL I WAS UNABLE TO DOWNLOAD A FEW GAMES. I THINK ONE PROBLEM IS THAT THERE ARE TOO MANY DIFFERENT MARKET APPS TO CHOOSE FROM. MOST ANDROIDS HAVE ONLY ONE TO MARKTPLACE TO DOWNLOAD APPS. THE TABLET HAS A FEW WHICH MAKES IT DIFFICULT TO USE BECAUSE IT TOLD ME I COULD ONLY DOWNLOAD ONE APP/MARKETPLACE TO GET ALL THE LASTEST GAMES. UNFORTUNATELY, I HAD TO DOWNLOAD AND UNINSTALL BOTH BUT ONE AT A TIME TO GET A NUMBER OF GAMES. ALSO I WAS UNABLE TO DOWNLOAD ANGRY BIRDS RIO, WHICH IS ONE OF THE MOST POPULAR GAMES OUT THERE. NOT TO MENTION AS I WAS TRYING TO DOWNLOAD GAMES, IT FROZE AND THE SCREEN WENT BLANK! HOWEVER, I DID WRAP IT AND PUT IT UNDER THE TREE. I WILL LET HIM TRY IT OUT FOR A FEW DAYS AND SEE IF I RUN INTO ANYMORE PROBLEMS, IF SO, THAT TABLET IS GOING BACK ASAP!!! AND I WILL BE PURCHASING THE FILEMATE. 12/19/2011
Great for beginner took it out of the box and it had more packing than neccecary (im a green dude) and turned it on and had a full charge went to youtube and it had horrible quaility and had to do all these steps to get it to 480p no 720p if you have anything less than a n rated router dont even think about getting this. make sure you update to andriod 2.2 first. would like it more if it had real buttons instead of those buttons on the top left corner the two gigabite card wasnt big enough so i got a 32 gigabyte card and it worked much faster unfortently some apps wouldnt download hope cruz comes out with an update soon other than that its great. 12/19/2011
1-4 of 5 total 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.
Enjoy 6 months special financing on every purchase, every day
*Offer subject to credit approval
Learn More or Apply Now
No Payments + No Interest if Paid in Full in 6 Months!
Plus, New Bill Me Later? Customers:Get $20 off $100!
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
Don't Miss a Single Rollback or Special Offer!
Subscribe to our RSS feeds to see the latest news and updated right in your RSS reader or RSS-enabled browser.nw350
/catalog/product.do, /catalog/fusionItem.do
/include/dynamic/tiles/templates/item/fusionItem.jsp
mark kelly jeff goldblum uc berkeley ohio state basketball annie annie zuccotti park
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.