Livia Fontana Langhe Nebbiolo 2017 - Bid Now (2024)

Size: 750 ml (Standard)

Red

Quantity: 5 bottles (price per item, sold together)

Current Price

5 items of 175 DKK ( 23.33 EUR i )

Bidding on this item is not possible from your country, as the seller does not offer delivery to your location. You can contact the seller and ask if this can be supported.

Remaining Time

8 Days, 1 Hour

End Date: 04/25/2024 21:08:00

' + '

'; confirmationDialog = new BootstrapDialog({ title: '', // will be set by javascript message: spinnerHtml, autodestroy: false, closable: true, type: BootstrapDialog.TYPE_DEFAULT }); confirmationDialog.realize(); confirmationDialog.getModalDialog().addClass("modal-dialog--confirm-listing-action"); confirmationDialog.getModalFooter().hide(); $(document).on('click', '#modalCancelButton', function (event) { event.preventDefault(); $('input[name="large-bid-confirmed"]').remove(); confirmationDialog.close(); }); $(document).on('click', '#modalConfirmLargeBidButton', function (event) { event.preventDefault(); var confBidAmt = $('input[name="ConfBidAmt"]:checked').val(); if (confBidAmt) { //update bid amount if necessary, and re-sumbit $("#BidAmount").val(confBidAmt); $("#actionForm") .append('') .submit(); } }); $(document).on('click', '#modalSubmitButton', function (event) { event.preventDefault(); var fullurl = "/Listing/Action" + "?" + $("#actionForm").serialize(); confirmationDialog.getModalBody().html(spinnerHtml); //if a listing action response is not received after x seconds for whatever reason, reload the page actionsSubmittedCount++; var expectedResponseCount = actionsSubmittedCount; setTimeout(function () { if (expectedResponseCount > actionResponsesCount) { write_log({ title: "Bid response too slow", message: "detail page reloaded" , "Listing ID": "26187323" , "URL": document.location.href , "Timeout MS": failsafe_reload_after_bid_delay_ms , "UserAgent": navigator.userAgent , "Actions Submitted": actionsSubmittedCount , "Action Responses": actionResponsesCount }); window.location.reload(true); } }, failsafe_reload_after_bid_delay_ms); $.ajax({ url: fullurl, cache: false }); }); $(document).on("SignalR_ListingActionResponse", function () { actionResponsesCount++; //clear out all all visible inputs since this action has now been processed $("input[type=number]:visible").val(""); $("input[type=text]:visible").val(""); $("textarea:visible").val(""); $('input[name="large-bid-confirmed"]').remove(); if (listingType == "Auction") { try { var value = parseInt($("#BidAmount").find("option:selected").data("value")); gtag("event", "auction_bid", { "event_category": "listing", "value": value }); dataLayer.push({ "event": "GAEvent", "eventCategory": "listing", "eventValue": value }); $.ajax({ url: ["RealTime", "FacebookTracking", "Bid"].join("/"), type: "post", contentType: "application/json; charset=utf-8", dataType: "json", data: JSON.stringify({ ListingId: 26187323, Amount: parseFloat($("#BidAmount").find("option:selected").data("value")) }) }); fbq("track", "Purchase", { content_ids: ["26187323"], content_type: "product", currency: "DKK", value: value }); } catch (ex) { // empty } } else if (listingType == "FixedPrice") { try { var quantity = parseInt($("#Quantity").val()); var value = 875 * quantity; gtag("event", "fixed_price_buy", { "event_category": "listing", "value": value }); dataLayer.push({ "event": "GAEvent", "eventCategory": "listing", "eventValue": value }); $.ajax({ url: ["RealTime", "FacebookTracking", "Purchase"].join("/"), type: "post", contentType: "application/json; charset=utf-8", dataType: "json", data: JSON.stringify({ ListingId: 26187323, Quantity: quantity }) }); fbq("track", "Purchase", { content_ids: ["26187323"], content_type: "product", currency: "DKK", value: value }); } catch (ex) { // empty } } confirmationDialog.close(); }); var missingRequiredInformation = false; var missingCellPhoneConfirmation = false; $(document).on("SignalR_UpdateListingStatus", function () { confirmationDialog.close(); }); $(document).on("lmhlt-refresh-listing-vitals", function (e, args) { if (args.id == 26187323) { confirmationDialog.close(); } }); var openMissingCellPhoneConfirmationPopup = function (form) { var loginUrl = "/en/account/log-on"; var setupRequest = new Lmhlt.Net.AsynchronousRequest({ url: "RealTime/Me/Required/Setup", type: "get" }); setupRequest.done(function (data) { if (data.CellPhone != null) { var verifyMobilePopupSettings = { translations: {"cancel":"Cancel","previous":"Previous","back":"Back","save":"Save","confirm":"Confirm","cell_phone":"Cell phone","cell_phone_required":"Cell phone number is required","cell_phone_invalid":"Cell phone not valid","cell_phone_verified":"Cell phone confimred","verify_cell_phone":"Confirm cell phone","standalone":"Before you can continue, you have to confirm that the cell phone belongs to you. This only needs to be done once.","verify_cell_phone_description_part_1":"Enter the 6 digit code we have sent to{cell-phone}.","verify_cell_phone_description_part_2":"Didn't receive a code?","verification_code":"Code","send_new_code":"Send new code","sending_new_code":"Sending…","missing_code":"Please enter the code you received","verification_code_invalid":"The code you entered is incorrect, please try again","verification_code_expired":"The entered code can no longer be used, we will send a new code you will have to use instead","verication_max_send_attempts_reached":"It is not possible to resend the code. You must wait {expires} before you can try to verify your cell phone again by clicking 'Send new code'","select_a_country":"Select a Country","select_a_state":"Select a State","generic_error_retry":"An unknown error occurred, please try again."}, endpoints: { verification_lookup: ["RealTime", "Verification", "CellPhone", "Lookup"].join("/"), verification_start: ["RealTime", "Verification", "CellPhone", "Start"].join("/"), verification_check: ["RealTime", "Verification", "CellPhone", "Check"].join("/") }, urls: { login: loginUrl }, standalone: true, cell_phone: { code: data.CellPhone.Code, code_id: data.CellPhone.CodeId, number: data.CellPhone.Number } }; var spinner = new Lmhlt.ListingDetails.BuyBoxSpinner({ id: "required-missing-information-popup", delay: 300, buy_box: form.closest(".awe-rt-BuyBox") }); spinner.show(); var popup = new Lmhlt.Account.VerifyMobilePopup(verifyMobilePopupSettings); popup.on("confirmed", function () { missingCellPhoneConfirmation = false; form.submit(); }); popup.on("shown", function () { spinner.hide(); }); popup.show(); } else { alert("An unknown error occurred, please try again."); } }); setupRequest.fail(function (xhr) { if (xhr && xhr.status == 403) { window.location.replace(loginUrl + "?returnUrl=" + encodeURIComponent(window.location.pathname + window.location.search + window.location.hash)); } else { alert("An unknown error occurred, please try again."); } }); }; var openMissingRequiredInformationPopup = function (form) { var settings = { translations: {"missing_payment":"Add details","missing_address_cell_phone":"Angiv venligst din adresse og mobilnummer for at byde på annoncer som er sat til salg på ShareWine.","missing_address":"Angiv venligst din adresse for at byde på annoncer som er sat til salg på ShareWine.","missing_cell_phone":"Angiv venligst dit mobilnummer for at byde på annoncer som er sat til salg på ShareWine.","information_usage":"Your info will only be used for validation and possible shipment of the purchased goods.
This info is saved and therefore does not need to be filled in for later bids on listings.","cancel":"Cancel","previous":"Previous","back":"Back","address":"Address","save":"Save","confirm":"Confirm","street1":"Street Address","street1_required":"Street is required","country":"Country or Territory","country_required":"Country is required","state_region":"State/Region","state_region_required":"State is required","zip_postal":"Zip/Postal","zip_postal_required":"Zip is required","city":"City","city_required":"City is required","cell_phone":"Cell phone","cell_phone_required":"Cell phone number is required","cell_phone_invalid":"Cell phone not valid","cell_phone_verified":"Cell phone confimred","verify_cell_phone":"Confirm cell phone","verify_cell_phone_description_part_1":"Enter the 6 digit code we have sent to{cell-phone}.","verify_cell_phone_description_part_2":"Didn't receive a code?","verification_code":"Code","send_new_code":"Send new code","sending_new_code":"Sending…","missing_code":"Please enter the code you received","verification_code_invalid":"The code you entered is incorrect, please try again","verification_code_expired":"The entered code can no longer be used, we will send a new code you will have to use instead","verication_max_send_attempts_reached":"It is not possible to resend the code. You must wait {expires} before you can try to verify your cell phone again by clicking 'Send new code'","select_a_country":"Select a Country","select_a_state":"Select a State","generic_error_retry":"An unknown error occurred, please try again.","payment":"Credit card","payment_description":"To make purchases as secure as possible, you are required to register a credit card in order to place bids. Your details will only be used to validate you as a buyer and will be stored securely by Stripe.

This registration is only needed once.
Should you experience issues with the registration, you can reach us at hello@sharewine.com","payment_required":"Please add a credit card"}, endpoints: { setup: ["RealTime", "Me", "Required", "Setup"].join("/"), save_address: ["RealTime", "Me", "Required", "Address"].join("/"), save_cell_phone: ["RealTime", "Me", "Required", "CellPhone"].join("/"), verification_lookup: ["RealTime", "Verification", "CellPhone", "Lookup"].join("/"), verification_start: ["RealTime", "Verification", "CellPhone", "Start"].join("/"), verification_check: ["RealTime", "Verification", "CellPhone", "Check"].join("/"), verification_is_approved: ["RealTime", "Verification", "CellPhone", "IsApproved"].join("/"), setup_intent_requests: ["RealTime", "SetupIntents", "Requests"].join("/"), log_open: ["RealTime", "Me", "Required", "Log", "Open"].join("/"), log_event: ["RealTime", "Me", "Required", "Log", "{id}", "Event"].join("/"), log_close: ["RealTime", "Me", "Required", "Log", "{id}", "Close"].join("/") }, urls: { login: "/en/account/log-on" }, elements: { address: true, cell_phone: true, payment: true }, culture: "en", username: aweUserName }; var spinner = new Lmhlt.ListingDetails.BuyBoxSpinner({ id: "required-missing-information-popup", delay: 300, buy_box: form.closest(".awe-rt-BuyBox") }); spinner.show(); var popup = new Lmhlt.Account.RequiredInformationPopup(settings); popup.on("saved", function () { missingRequiredInformation = false; missingCellPhoneConfirmation = false; form.submit(); }); popup.on("no-missing-data", function () { spinner.hide(); missingRequiredInformation = false; missingCellPhoneConfirmation = false; form.submit(); }); popup.on("shown", function () { spinner.hide(); }); popup.show(); }; $("#actionForm").submit(function (event) { event.preventDefault(); var form = $(this); if (missingRequiredInformation) { openMissingRequiredInformationPopup(form); return; } else if (missingCellPhoneConfirmation) { openMissingCellPhoneConfirmationPopup(form); return; } var fullurl = $(this).attr("action") + "Modal"; confirmationDialog.open(); confirmationDialog.getModalBody().html(spinnerHtml); $.ajax({ url: fullurl, type: "get", cache: false, data: $(this).serialize(), success: function (data) { if (data.indexOf("LOGON_NEEDED") >= 0) { //not logged in -- redirect $.cookie("continueActionData", $("#actionForm").serialize(), { path: "/", expires: 1 }); var retUrl = "/en/listings/26187323/Livia-Fontana-Langhe-Nebbiolo-2017"; var logonUrl = "/en/account/log-on" + "?returnUrl=" + encodeURIComponent(retUrl); window.location.replace(logonUrl);} else if (data.indexOf("CC_NEEDED") >= 0) { //cedit card req'd -- redirect $.cookie("continueActionData", $("#actionForm").serialize(), { path: "/", expires: 1 }); var retUrl = "/en/listings/26187323/Livia-Fontana-Langhe-Nebbiolo-2017"; var addCardUrl = "/Account/AddCard?SellerID=728324" + "&returnUrl=" + encodeURIComponent(retUrl); window.location.replace(addCardUrl); } else { if (data.indexOf("triggerMissingRequiredInformation") != -1) { confirmationDialog.close(); missingRequiredInformation = true; openMissingRequiredInformationPopup(form); } else if (data.indexOf("triggerMissingCellPhoneConfirmation") != -1) { confirmationDialog.close(); missingCellPhoneConfirmation = true; openMissingCellPhoneConfirmationPopup(form); } else { //proceed with bidding modal confirmationDialog.getModalBody().html(data).each(function () { AssignModalFormToAjax(); }); var popupTitle = confirmationDialog.getModalBody().find("[name='popup-title']").val(); confirmationDialog.$modalHeader.find(".bootstrap-dialog-title").html(popupTitle); } } } }); }); function AssignModalFormToAjax() { var resultForm = confirmationDialog.getModalBody().find("form"); resultForm.submit(function (event) { event.preventDefault(); confirmationDialog.getModalBody().html(spinnerHtml); $.ajax({ url: resultForm.attr("action"), type: "post", async: true, data: resultForm.serialize(), success: function (data) { confirmationDialog.getModalBody().html(data); AssignModalFormToAjax(); } }); }); } $(document).on("SignalR_Started", function () { var serializedActionData = $.cookie("continueActionData"); if (!(serializedActionData == null || serializedActionData == "")) { var continueActionData = ParseActionData(serializedActionData.toString()); for (var qiKey in continueActionData) { var qiValue = continueActionData[qiKey]; $("#actionForm").find("#" + qiKey).val(qiValue); } $.cookie('continueActionData', "", { path: '/', expires: 0 }); } }); function ParseActionData(serializedActionData) { var result = new Array(); var kvPairs = serializedActionData.split('&'); for (var i = 0; i < kvPairs.length; i++) { var kvPair = kvPairs[i].split('='); result[kvPair[0]] = decodeURIComponent(replaceAll(kvPair[1], "+", " ")); } return result; } });

Livia Fontana Langhe Nebbiolo 2017 - Bid Now (2024)
Top Articles
Latest Posts
Article information

Author: Maia Crooks Jr

Last Updated:

Views: 5784

Rating: 4.2 / 5 (63 voted)

Reviews: 94% of readers found this page helpful

Author information

Name: Maia Crooks Jr

Birthday: 1997-09-21

Address: 93119 Joseph Street, Peggyfurt, NC 11582

Phone: +2983088926881

Job: Principal Design Liaison

Hobby: Web surfing, Skiing, role-playing games, Sketching, Polo, Sewing, Genealogy

Introduction: My name is Maia Crooks Jr, I am a homely, joyous, shiny, successful, hilarious, thoughtful, joyous person who loves writing and wants to share my knowledge and understanding with you.