× 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%2f114182285%2fLiBa-Back-and-Neck-Massager-Trigger-Point-Massage-Tools-for-Pain-Relief-and'; 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=702Auctions&template=ask_listing_question&listingID=114182286&returnUrl=%2FEvent%2FLotDetails%2F114182285%2FLiBa-Back-and-Neck-Massager-Trigger-Point-Massage-Tools-for-Pain-Relief-and'; 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=114182286&Receiver=702Auctions' .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%2f114182285%2fLiBa-Back-and-Neck-Massager-Trigger-Point-Massage-Tools-for-Pain-Relief-and'; 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=702Auctions&template=ask_listing_question&listingID=114182286&returnUrl=%2FEvent%2FLotDetails%2F114182285%2FLiBa-Back-and-Neck-Massager-Trigger-Point-Massage-Tools-for-Pain-Relief-and'; 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=114182286&Receiver=702Auctions' .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 = 152; var lastLotOrder = 460; if (thisLotOrder > 0) { $(".GoToPrevLot").prop("disabled", true); $.post("/RealTime/GetLotIdByLotOrder", { eventId: 114159054, lotOrder: (thisLotOrder - 1) }) .done(function (data) { if (data.LotId) { window.location.href = "/Event/LotDetails" + "/" + data.LotId; } }); } }); $(".GoToNextLot").on("click", function () { var thisLotOrder = 152; var lastLotOrder = 460; if (thisLotOrder < lastLotOrder) { $(".GoToNextLot").prop("disabled", true); $.post("/RealTime/GetLotIdByLotOrder", { eventId: 114159054, 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%2f114182285%2fLiBa-Back-and-Neck-Massager-Trigger-Point-Massage-Tools-for-Pain-Relief-and'; 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=702Auctions&template=ask_listing_question&listingID=114182286&returnUrl=%2FEvent%2FLotDetails%2F114182285%2FLiBa-Back-and-Neck-Massager-Trigger-Point-Massage-Tools-for-Pain-Relief-and'; 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=114182286&Receiver=702Auctions' .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 72 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 itemsfrom1889 E. MAULE AVE. SUITE FLas Vegas, NV 89119within7 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!!1889 E. MAULE AVE. SUITE FLas Vegas, NV 89119Monday-Friday 9am-5pmwithin 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
LiBa Back and Neck Massager - Trigger Point Massage Tools for Pain Relief and 
MSRP: $23.99 -
- SoldWinning Bid: $20.00
- 12 Bid(s) View Bid History
702Auctions Las Vegas, NV US
View Seller's Other Listings
Payment Options Seller Accepts Credit Cards
Payment Instructions
Once payment is made, you can set an appointment for pickup. Only one appointment is needed to pick up all of your items.
Details
Lot Number
216757
MSRP
23.99
Item Condition
NEW
Amazon ID
B098VZKHWB
Lot # M216757
System ID # 114182285
End Date
Start Date
Description
Description: LiBa Back and Neck Massager - Trigger Point Massage Tools for Pain Relief and Manual Massage Hook Therapy Handheld Back Neck Shoulder Massager Black - Gift for Women & Men B. Black
MSRP: 23.99
Condition: NEW
Notes:
Other info: Description (from Manufacturer): Description INTUITIVE ERGONOMIC DESIGN - The Selfie Massager’s beautifully sculptured line and curves is the perfect marriage of form and function. Unlike other massage therapy tools which tend to be either basic and toy-like or over-sized with too many knobs and handles, the Selfie Massager was designed to be the ultimate massage tool since each therapy node and spike can be used on every part of the body from the neck to the feet. Only your imagination is standing in the way of this tool’s versatility. ALLEVIATE MUSCLE KNOTS OR TRIGGER POINTS - The Selfie Massager is the ideal muscle massage tool for bringing relief to a patch of muscles in spasm (knots) or trigger points. By applying pressure to the affected muscle patch, blood circulation is stimulated bringing in more oxygen and nutrients for faster muscle relief and recovery. There are a myriad of trigger points throughout the body located in the neck, shoulders, back, torso, thigh/hips, legs and feet. IDEAL SIZE , DIMENSION AND WEIGHT -The Selfie Massager weighs less than a pound. When used on a consistent basis, anything over a pound can easily fatigue the arms and hands diminishing the accuracy and pressure applied to the affected muscle group impeding recovery and healing. Also, the awkward handle shape and positioning on many popular massagers can make it difficult to operate for those with limited range in mobility. Our design addresses those issues. BPA, PBDE, TBBPA FREE & ECO FRIENDLY - The Selfie Massager is made with eco-friendly components that are BPA, PBDE, TBBPA free so it is safe to use in the water or shower. The environmentally sound plastic is also hypoallergenic so there is little risk of an allergic reaction during prolonged contact with the skin. We take great care in bringing to you the finest trigger point massager that not only promotes your well-being but that of the environment as well.Features: Trigger Point Massage Tool - This back massage handheld's beautifully sculptured line and curves are the perfect marriage of form and function. Massager Muscle Hook helps you target pain trigger points with deep tissue. The unique design allows you to reach all body muscle groups from the neck to the feet, relaxing tight, spasmodically, and muscle knots with self massage tools.,Full Body Pain Relief- The therapy hook cane is the ideal muscle massage tool for relieving a patch of muscles in spasms (knots) or trigger points. By applying pressure to the affected muscle patch, blood circulation is stimulated bringing in more oxygen and nutrients for faster fibromyalgia muscle relief and recovery. Get one Liba massage stick, you will get your neck massager, back massager, and foot massager.,Ideal Size Massage Tools -Less than a pound. Anything over a pound can easily fatigue the arms and hands diminishing the accuracy and pressure applied to the affected muscle group and impeding recovery and healing, When used consistently. Also, the awkward handle shape and positioning on many popular massagers can make it difficult to operate for those with limited range in mobility. Our massage stick design addresses those issues.,ECO-FRIENDLY Therapy Equipment-The Massager is made with eco-friendly components that are BPA, PBDE, and TBBPA free so it is safe to use in the water or shower. The environmentally sound plastic is also hypoallergenic so there is little risk of an allergic reaction during prolonged contact with the skin. Protect your health and that of nature as well.,Widely Application Massager-LiBa back massager is very suitable for office workers to relieve fatigue. For sports and yoga enthusiasts, it is also an essential massage tool to promote blood circulation and relaxation after exercise. As a massager that protects your health, it is perfect as a gift for your friends, parents, boyfriends, and girlfriends.Keywords: LiBa,Back,and,Neck,Massager,Trigger,Point,Massage,Tools,for,Pain,Relief,and,Manual,Massage,Hook,Therapy,Handheld,Back,Neck,Shoulder,Massager,Black,Gift,for,Women,&,Men,B.,BlackCategories: Health, Household & Baby Care, Health & Household, Wellness & Relaxation, Massage Tools & Equipment, Massage Tools, Back Massagers -- CATEGORIES: Health, Household & Baby Care,Health & Household,Wellness & Relaxation,Massage Tools & Equipment,Massage Tools,Back Massagers
Lot Number: 216757
Pickup Information: This item is available for LOCAL PICKUP ONLY. No shipping available.