' + 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
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 0088411610296?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.
The Dell 15.6" Inspiron Laptop PC has everything you need to compute on the go. Microsoft Windows 8 Operating System lets you complete any task. Connect with friends and family on the built-in webcam.
Dell 15.6" Inspiron Laptop PC:
Key Features and Benefits:
- Intel Pentium DC B960 processor
2.20GHz, 2MB Cache - 4GB DDR3 SDRAM system memory
Gives you the power to handle most power-hungry applications and tons of multimedia work - 500GB SATA hard drive
Store 333,000 photos, 142,000 songs or 263 hours of HD video and more - 8x DVD+/-RW drive
Watch movies, and read and write CDs and DVDs in multiple formats - 10/100 Fast Ethernet, 802.11n Wireless LAN
Connect to a broadband modem with wired Ethernet or wirelessly connect to a WiFi signal or hotspot with the 802.11n connection built into your PC - 15.6" HD display
Integrated Intel HD Graphics
Additional Features:
- Built-in webcam
- 3 x USB 2.0 ports, 1 x headphone jack, 1 x microphone jack, 1 x RJ-45 Ethernet port, 1 x VGA port, 1 x HDMI port
- 6-cell lithium-ion battery
Software:
- Genuine Microsoft Windows 8 Operating System
- McAfee SecurityCenter (30-day trial)
- Backup and Restore options built into Windows allows you to create safety copies of your most important personal files, so you're always prepared for the worst
Support and Warranty:
- 1-year limited hardware warranty
- Restore discs are not included (unless specified by supplier). We recommend you use the installed software to create your own restore and backup DVD the first week you use the computer.
What's In The Box:
- Power cord
- 6-cell lithium-ion battery
- Quick Start Guide
To see the manufacturer's specifications for this product, click here.
To see a list of our PC Accessories, click here.
Trade in your used computer and electronics for more cash to spend at Walmart. Good for your wallet and the environment - click here.
Platform: | PC |
Primary Color: | Red |
Processor Brand: | Intel |
Processor Type: | Intel Pentium B960 Dual-Core Processor |
Processor Speed: | 2.20 GHz |
System Ram: | 4 GB |
Hard Drive Size: | 500 GB |
Laptop Screen Size: | 15.6" |
Screen Type: | HD |
Graphics Card: | Integrated Intel HD Graphics |
Multi Media Drive: | 8x DVD??±RW DL Drive |
Card Reader Type: | 3-in-1 Digital Media Card Reader |
Battery Type: | Lithium Ion |
Network Connection: | 10/100 Fast Ethernet & 802.11n Wireless LAN |
Connector Type: | 1 x DC-in, 1 x Ethernet, 1 x HDMI, 1 x Headphone, 1 x Microphone, 3 x USB 2.0, 1 x VGA |
Operating System: | Windows 8 |
Accessories Included: | Power Cord,Battery |
Model No.: | i15-3091RED |
Shipping Weight (in pounds): | 8.14 |
Product in Inches (L x W x H): | 13.67?x?0.83?x?9.45 |
Walmart No.: | 550946430 |
Rated 4.2 out of 5 by 44reviewers.
Rated 5 out of 5 by ssecore I am still trying to understand Windows8, but I'm enjoying this experience 01/10/2013
Rated 5 out of 5 by deenapeena Solid, sturdy laptop Got it for our son - would have liked a color option but otherwise pleased with the computer. 01/07/2013
Rated 3 out of 5 by Sobelle I've owned Dell's for many years and the computer is great, but it came with Windows 8 and Internet Explorer 10 which I absolutely hate. I'd heard all the hoop-la about Windows 8 and figured though it was different it couldn't possibly be that difficult to work with, but boy was I wrong! On top of that, even Explorer is way different. I don't understand the logic behind Microsoft making such drastic changes that a person literally has to re-learn how to use a computer. I would NOT recommend Explorer 10 or Windows 8 to anyone who wants a computer that they can merely sit down to and be off and running right out of the box. This is painstakingly slow going and very, very frustrating. 02/10/2013
Rated 3 out of 5 by educatedLL Good value for price. 02/07/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 HereThe following available options may be selected during checkout:
Gift Message: Add a personal note that we'll include with your gift.
Gift Receipt: When you add other gift options, we'll include a receipt that keeps the price a secret but makes it easy to exchange or return an 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
nw509
/catalog/product.do, /catalog/fusionItem.do
/include/dynamic/tiles/templates/item/fusionItem.jsp
Tim Berners-Lee Olympics 2012 Schedule Kenneth Branagh Lupe Ontiveros London 2012 China muhammad ali Opening ceremony London 2012
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.