× Bidding has ended on this item.
"); if (!$(this).is(":visible")) { $(this).fadeTo(1000, 1, function () { $(this).slideDown(500); }); } }); } if (data.Accepted) { //prepare success system message systemMessage = "
×" + contextMessageDictionary["ActionSuccess"] + "
"; if (!$(".awe-rt-ListingActionMessage").is(":visible") || $(".awe-rt-ListingActionMessage").html() == "") { $(".awe-rt-ListingActionMessage").hide(); $(".awe-rt-ListingActionMessage").html(systemMessage); $(".awe-rt-ListingActionMessage").slideDown(); } else { $(".awe-rt-ListingActionMessage").fadeOut(200, function () { $(this).html(systemMessage); $(this).fadeIn(200); }); } //render checkout button if a lineitem was returned //EXCEPT: when Auto Generate Invoices is enabled, do not render checkout buttons for lots until the entire event has ended if (!autoGenerateInvoices && ownerAllowsInstantCheckout && data.LineItemID) { var checkoutUrl = 'https://bid.702auctions.com/Account/Checkout?lineitemid=' + data.LineItemID; checkoutUrl += '&returnUrl=%2fEvent%2fLotDetails%2f114635888%2fOVENTE-9-Lighted-Wall-Mount-Makeup-Mirror-with-1X10X-Magnification-Cordless'; if (autoCheckoutForBuyNow) { window.location = checkoutUrl; } var checkoutHtml = '
' + '' + '' + '' + '' + '' + '' + 'Checkout' + '' + '' + '
'; if ($(".detail__context-menu").find(".btn__detail__checkout").length == 0) { $(".detail__context-menu").prepend(checkoutHtml).show(); } else { jslog("skipped rendering checkout button because one already exists."); } } if (data.LineItemID && !highlightCheckoutButtonForBuyNow) { //render contact seller button if one does not already exist if (false && $("a.btn__detail__contactuser").length == 0) { var contactSellerUrl = '/Account/SendListingMessage?receiver=actiondiscountsales&template=ask_listing_question&listingID=114635889&returnUrl=%2FEvent%2FLotDetails%2F114635888%2FOVENTE-9-Lighted-Wall-Mount-Makeup-Mirror-with-1X10X-Magnification-Cordless'; var contactSellerHtml = '
' + '' + '' + '' + '' + '' + '' + 'Contact Seller' + '' + '' + '
'; $(".detail__context-menu").append(contactSellerHtml).show(); jslog("contact button rendered for line item #" + data.LineItemID); } //render feedback button if (false) { var feedbackUrl = '/Account/SubmitFeedback?LineItemID=REPLACELINEITEMID&ListingID=114635889&Receiver=actiondiscountsales' .replace("REPLACELINEITEMID", data.LineItemID); var feedbackHtml = '
' + '' + '' + '' + '' + '' + '' + 'Feedback' + '' + '' + '
'; $(".detail__context-menu").append(feedbackHtml).show(); jslog("feedback button rendered for line item #" + data.LineItemID); } } } else { //ReasonString is populated, prepare a Negative System message if (contextMessageDictionary[data.ReasonString]) { systemMessage = "
×" + contextMessageDictionary[data.ReasonString] + "
"; } else { systemMessage = "
×" + data.ReasonString + "
"; } if (!$(".awe-rt-ListingActionMessage").is(":visible") || $(".awe-rt-ListingActionMessage").html() == "") { $(".awe-rt-ListingActionMessage").hide(); $(".awe-rt-ListingActionMessage").html(systemMessage); $(".awe-rt-ListingActionMessage").slideDown(); } else { $(".awe-rt-ListingActionMessage").fadeOut(200, function () { $(this).html(systemMessage); $(this).fadeIn(200); }); } } } else { //Context is null, but ReasonString is populated, prepare a Negative System message if (contextMessageDictionary[data.ReasonString]) { systemMessage = "
×" + contextMessageDictionary[data.ReasonString] + "
"; } else { systemMessage = "
×" + data.ReasonString + "
"; } if (!$(".awe-rt-ListingActionMessage").is(":visible") || $(".awe-rt-ListingActionMessage").html() == "") { $(".awe-rt-ListingActionMessage").hide(); $(".awe-rt-ListingActionMessage").html(systemMessage); $(".awe-rt-ListingActionMessage").slideDown(); } else { $(".awe-rt-ListingActionMessage").fadeOut(200, function () { $(this).html(systemMessage); $(this).fadeIn(200); }); } } } }); // render a checkout button if: // // - the lot ends successfully, and // - the winner is viewing, but only if // - auto gen invoices is disabled // // mainly to prevent one invoice per LOT per buyer, rather than the generally preferred one invoice per EVENT per buyer $(document).on("SignalR_UpdateListingStatus", function (event, data) { if ($.inArray(data.ListingID, interestingListings) < 0) return; if (autoGenerateInvoices || ownerAllowsInstantCheckout) { if (data.Status == "Successful" && data.LineItemID && data.LineItemPayerUN == "") { //when Auto Generate Invoices is enabled, do not render checkout buttons for lots until the entire event has ended if (!autoGenerateInvoices) { var checkoutUrl = 'https://bid.702auctions.com/Account/Checkout?lineitemid=' + data.LineItemID; checkoutUrl += '&returnUrl=%2fEvent%2fLotDetails%2f114635888%2fOVENTE-9-Lighted-Wall-Mount-Makeup-Mirror-with-1X10X-Magnification-Cordless'; var checkoutHtml = '
' + '' + '' + '' + '' + '' + '' + 'Checkout' + '' + '' + '
'; if ($(".detail__context-menu").find(".btn__detail__checkout").length == 0) { $(".detail__context-menu").prepend(checkoutHtml).show(); } else { jslog("skipped rendering checkout button because one already exists."); } } //render contact seller button if one does not already exist if (false && $("a.btn__detail__contactuser").length == 0) { //"/Account/SendListingMessage?receiver=tester1&template=ask_listing_question&listingID=166614&returnUrl=%2FListing%2FDetails%2F166614%2Ftest-item-J" var contactSellerUrl = '/Account/SendListingMessage?receiver=actiondiscountsales&template=ask_listing_question&listingID=114635889&returnUrl=%2FEvent%2FLotDetails%2F114635888%2FOVENTE-9-Lighted-Wall-Mount-Makeup-Mirror-with-1X10X-Magnification-Cordless'; var contactSellerHtml = '
' + '' + '' + '' + '' + '' + '' + 'Contact Seller' + '' + '' + '
'; $(".detail__context-menu").append(contactSellerHtml).show(); jslog("contact button rendered for line item #" + data.LineItemID); } //render feedback button if (false) { var feedbackUrl = '/Account/SubmitFeedback?LineItemID=REPLACELINEITEMID&ListingID=114635889&Receiver=actiondiscountsales' .replace("REPLACELINEITEMID", data.LineItemID); var feedbackHtml = '
' + '' + '' + '' + '' + '' + '' + 'Feedback' + '' + '' + '
'; $(".detail__context-menu").append(feedbackHtml).show(); jslog("feedback button rendered for line item #" + data.LineItemID); } } } }); $(".GoToPrevLot").on("click", function () { var thisLotOrder = 632; var lastLotOrder = 644; if (thisLotOrder > 0) { $(".GoToPrevLot").prop("disabled", true); $.post("/RealTime/GetLotIdByLotOrder", { eventId: 114544756, lotOrder: (thisLotOrder - 1) }) .done(function (data) { if (data.LotId) { window.location.href = "/Event/LotDetails" + "/" + data.LotId; } }); } }); $(".GoToNextLot").on("click", function () { var thisLotOrder = 632; var lastLotOrder = 644; if (thisLotOrder < lastLotOrder) { $(".GoToNextLot").prop("disabled", true); $.post("/RealTime/GetLotIdByLotOrder", { eventId: 114544756, lotOrder: (thisLotOrder + 1) }) .done(function (data) { console.log("next lot result: ", data); if (data.LotId) { window.location.href = "/Event/LotDetails" + "/" + data.LotId; } }); } }); $(document).on("SignalR_UpdateInvoiceStatus", function (event, data) { if ($.inArray(data.ListingID, interestingListings) < 0) return; jslog("SignalR_UpdateInvoiceStatus (listing, invoice, status, payer): " + data.ListingID + ", " + data.InvoiceID + ", " + data.InvoiceStatus + ", " + data.InvoicePayerUN); //show "View Invoice" or "Checkout" button if applicable if (data.InvoicePayerUN == aweUserName) { //get result of /RealTime/IsInvoicePayable?invoiceId=nnnnnn var promise = Proxy.invokeAsync("IsInvoicePayable", { invoiceId: data.InvoiceID }, function(result) { var checkoutUrl = 'https://bid.702auctions.com/Account/Invoice/' + data.InvoiceID; checkoutUrl += '?returnUrl=%2fEvent%2fLotDetails%2f114635888%2fOVENTE-9-Lighted-Wall-Mount-Makeup-Mirror-with-1X10X-Magnification-Cordless'; if (result.isPayable) { //invoice is payable if (autoCheckoutForBuyNow) { window.location = checkoutUrl; } if ($("a.btn__detail__checkout").length == 0) { //render checkout button if one does not already exist var checkoutHtml = '
' + '' + '' + '' + '' + '' + '' + 'Checkout' + '' + '' + '
'; $(".detail__context-menu").prepend(checkoutHtml).show(); jslog("checkout button rendered for invoice #" + data.InvoiceID); } } else { //the invoice is not payable, so instead of 'checkout' button, render 'view invoice' button if one does not already exist if ($("a.btn__detail__invoices").length == 0) { var viewInvoiceHtml = '
' + '' + '' + '' + '' + '' + '' + 'View Invoice' + '' + '' + '
'; $(".detail__context-menu").append(viewInvoiceHtml).show(); jslog("view invoice button rendered for invoice #" + data.InvoiceID); } } //only render the contact and/or feedback buttons if either // a) the web.config setting HighlightCheckoutButtonForBuyNow is set to False, or // b) the invoice is not payable if (!highlightCheckoutButtonForBuyNow || !result.isPayable) { //render contact seller button if one does not already exist if (false && $("a.btn__detail__contactuser").length == 0) { var contactSellerUrl = '/Account/SendListingMessage?receiver=actiondiscountsales&template=ask_listing_question&listingID=114635889&returnUrl=%2FEvent%2FLotDetails%2F114635888%2FOVENTE-9-Lighted-Wall-Mount-Makeup-Mirror-with-1X10X-Magnification-Cordless'; var contactSellerHtml = '
' + '' + '' + '' + '' + '' + '' + 'Contact Seller' + '' + '' + '
'; $(".detail__context-menu").append(contactSellerHtml).show(); jslog("contact button rendered for invoice #" + data.InvoiceID); } //render feedback button if (false) { var feedbackUrl = '/Account/SubmitFeedback?LineItemID=REPLACELINEITEMID&ListingID=114635889&Receiver=actiondiscountsales' .replace("REPLACELINEITEMID", data.LineItemID); var feedbackHtml = '
' + '' + '' + '' + '' + '' + '' + 'Feedback' + '' + '' + '
'; $(".detail__context-menu").append(feedbackHtml).show(); jslog("feedback button rendered for invoice #" + data.InvoiceID); } } }, function(error) { jslog("Error retrieving invoice status (1): " + error); } ); promise.fail(function (jqXHR, textStatus) { jslog("Error retrieving invoice status (2): " + textStatus); }); } }); });
Back To Catalog
Shipping Information
Auction Terms & Conditions
- All auctions are no reserve and sold to the highest bidder.
- A 15% buyers fee applies to all items.
- We accept Cash andall major credit cards.
- All payments must be made online prior to pickup. You will be emailed an invoice with a payment link,or your invoice can be found under the My Account section and can be paid for there. If you are paying cash, your order must be paid and picked up within 48 hours.
- All invoices will be automatically charged to the Credit / Debit card on fileby 5pmthe followingday.
- If there is no Credit/Debit card on file and there is no payment within 24 hours, the item will be relisted and you will not be allowed to bid again until you add a payment method to your account.
- All bidders must pick uptheir itemsfrom3775 E SAHARA AVE LAS VEGAS, NV 89104within5 days.
- Once payment is received, you will receive an email with a link to schedule a pickup time and pickup instructions.
- All items must be picked up within 10 days of the auction endingor your order will be canceled and may be subject to a restocking fee.
702 Auctions offers returns on items that are misdescribed within 10 days of the date you picked up your items.
For our complete terms and conditions,Click Here
Pickup only!!3775 E SAHARA AVELas Vegas, NV 89104Monday-Friday 9am-4:30pmwithin 10 days. Once payment is received, you will receive an email with a link to schedule a pickup time and pickup instructions. We offer contactless pickup options and take all possible measures to ensure your safety.
15.00% Buyer's Premium
This Auction Uses Proxy Bidding.
Ended
OVENTE 9" Lighted Wall Mount Makeup Mirror with 1X/10X Magnification, Cordless 
MSRP: $32.35 -
- SoldWinning Bid: $2.00
- 2 Bid(s) View Bid History
actiondiscountsales Las Vegas, NV US
View Seller's Other Listings
Payment Options Seller Accepts Credit Cards
Payment Instructions
Pick Up from 3775 E. Sahara Ave Las Vegas Nevada 89104
Details
Lot Number
611631
MSRP
32.35
Item Condition
NEW
Amazon ID
B0159GJ3WA
Lot # S611631
System ID # 114635888
End Date
Start Date
Description
Description: OVENTE 9" Lighted Wall Mount Makeup Mirror with 1X/10X Magnification, Cordless Double Sided Magnifying Round Vanity Mirror, 360° Swivel Design, Extendable and Folding Arm, Polished Chrome MFW85CH1X10X Polished Chrome 9"L x 10"W 10X Magnification
MSRP: 32.35
Condition: NEW
Notes:
Other info: Description (from Manufacturer): Introducing the revolutionary OVENTE MFW Series Mirrors — your ultimate grooming companion! This lighted wall-mounted makeup mirror is more than just a practical accessory; it serves as a stunning focal point that beautifully complements any décor, from vintage charm to Hollywood glamour. Enhance your bathroom, bedroom, or vanity area with elegant LED lighting that adds sophistication to your routine. The convenient swinging extension arm allows for effortless adjustments, ensuring optimal visibility for all your grooming needs. With its hands-free design, multitasking is a breeze — ideal for home, hotels, the dentist's office, or even the shower. Say goodbye to cluttered countertops! This sleek wall-mounted mirror keeps your space organized. Powered by batteries (not included), installation is quick and easy, with no complicated wiring required. Enjoy unparalleled clarity with the magnified LED vanity mirror, perfect for fine-tuning details, whether you're sculpting eyebrows or refining facial hair. Radiating positive vibes, it enhances the ambiance of any room and suits all ages. The mirror magnifies and showcases your accessories, adding a luxurious touch to your grooming experience. Choose from three deluxe finishes — Antique Bronze, Nickel Brushed, and Polished Chrome — and two size options — 7 inches and 9 inches — along with two magnification levels of 1x7x and 1x10x. Transform your grooming haven with OVENTE’s MFW Series Lighted Wall Mount Makeup Mirror — a perfect blend of style and functionality that elevates your space to new heights!Features: DUAL-SIDED MAGNIFYING MAKEUP MIRROR – Elevate your grooming routine with our innovative dual magnification mirror. Offering both 1x and 10x magnification, this mirror provides unparalleled clarity, letting you see every detail with precision. Say goodbye to distorted reflections! Carefully designed to ensures crystal-clear images, while optimal lighting eliminates shadows for a flawless application every time.,FLEXIBLE & EASY TO USE – The adjustable arm can be extended up to 13 inches from the wall, making it easy to find your ideal angle. Built with natural white diffused LED ring light that offers optimal illumination for flawless makeup application, providing a soft, natural glow that mimics daylight. With this lighting, you'll see every detail with perfect clarity.,360° ROTATING FUNCTION – Allows you to effortlessly adjust its angle to meet your needs. With a generous 9-inch diameter, it provides ample viewing space for seamless hair styling, makeup application, or skincare routines, ensuring optimal visibility from all perspectives. Its sleek and durable design seamlessly integrates into any space, while the smooth rotation mechanism enhances convenience and efficiency.,CORDLESS & QUICK INSTALLATION – Enjoy the ultimate convenience with our cordless makeup mirror, powered by 4 AAA batteries (not included). Say goodbye to searching for electrical outlets. This bathroom wall-mounted vanity mirror can be easily installed on almost any surface with just a few screws, ensuring a quick and hassle-free setup.,IDEAL GIFT CHOICE – The perfect gift choice for any occasion! This versatile mirror is suitable for bedrooms, bathrooms, hotels, spas, and beauty routines. It makes a perfect present for family, friends, or sisters on birthdays, Christmas, Halloween, Thanksgiving, Mother’s Day, and Valentine’s Day.,US-BASED CUSTOMER SERVICE LETS YOU BUY WITH CONFIDENCE – OVENTE warranties that the product shall be free from defects in material and workmanship under normal use and conditions, for 1 year from the original purchase date.Keywords: OVENTE,9",Lighted,Wall,Mount,Makeup,Mirror,with,1X/10X,Magnification,Cordless,Double,Sided,Magnifying,Round,Vanity,Mirror,360°,Swivel,Design,Extendable,and,Folding,Arm,Polished,Chrome,MFW85CH1X10X,Polished,Chrome,9"L,x,10"W,10X,MagnificationCategories: Beauty & Personal Care, Tools & Accessories, Mirrors, Makeup Mirrors -- CATEGORIES: Beauty & Personal Care , Tools & Accessories , Mirrors , Makeup Mirrors
Lot Number: 611631
Pickup Information: This item is available for LOCAL PICKUP ONLY. No shipping available.