Back
Back
Accesskeys list
  • 0 - Header
  • 1 - Main content
  • 2 - Footer
Luxembourg | en
Stores
Swarovski Club
Crystal Society (SCS)
Login
Wishlist

Swarovski
Swarovski

  • Jewelry
    • Back
      Discover All
    • Necklaces and pendants
      • Back
        Discover All
      • Necklaces
      • Pendants
      • Chokers
      • Sets
    • Rings
      • Back
        Discover All
      • Halo rings
      • Motif rings
      • Band rings
      • Cocktail rings
      • Adjustable rings
      • Stackable rings
    • Bracelets
      • Back
        Discover All
      • Bangle & cuffs
      • Chain bracelets
      • Adjustable bracelets
      • Tennis bracelets
    • Shop by collection
      • Back
      • Online Exclusives
      • Essentials collection
    • Earrings
      • Back
        Discover All
      • Drop earrings
      • Stud earrings
      • Hoop earrings
      • Clip earrings
      • Ear cuffs
    • Brooches
    • How to care for your jewelry
    • Men's collection
      • Back
        Discover All
      • Pendants
      • Bracelets and Cuffs
  • Watches
    • Back
      Discover All
    • Women's watches
    • Shop by material
      • Back
      • Gold-tone watches
      • Rose gold-tone watches
      • Stainless steel watches
      • Leather strap watches
      • Metal bracelet watches
    • Shop by color
      • Back
      • Black tone watches
      • Red tone watches
      • White tone watches
      • Blue tone watches
      • Gray tone watches
    • Shop by collection
      • Back
      • Octea
      • Cosmopolitan
      • Crystalline
    • Watch Straps
    • How to care for your watches
    • All Watches
  • Accessories
    • Back
      Discover All
    • Pens
    • Sunglasses
    • Shop by smartphone
      • Back
      • iPhone ® 12/ 12 pro
      • iPhone ® 12 mini
      • iPhone ® 12 pro max
      • iPhone ® 11 / 11 pro
    • Shop by collection
      • Back
      • Mickey and Minnie
    • Smartphone cases
    • Handbags
    • Cases compatible with Apple Watch ®
    • Bestsellers
    • Key Rings
  • Decorations
    • Back
      Discover All
    • Christmas
      • Back
        Discover All
      • Hanging Ornaments
      • Christmas characters
    • Home Décor
      • Back
        Discover All
      • Picture frames
      • Dining glasses
      • Candleholders and tealights
      • Bowls
      • Vases
      • Stands and holders
      • Bases
      • Magnets
      • Fashion books
    • Nature Inspired
      • Back
        Discover All
      • Birds
      • Sea life
      • Wild life
      • Flowers
      • Dogs and cats
      • Other animals
    • Bestsellers
    • Characters
      • Back
        Discover All
      • Kris Bears
      • Disney
      • Warner Bros. Crystal Figurines
      • Zodiac
      • Other characters
    • Celebrations
    • Shop by collection
      • Back
      • Disney
      • SCS Exclusive Products
      • Kris Bears
      • Limited Editions
      • Warner Bros.
    • Asian symbols
      • Back
        Discover All
      • Chinese Zodiac
    • Our picks
      • Back
      • Swarovski: 125 years of light
      • How To Care For Your Decorations
  • Gifts
    • Back
      Discover All
    • Gifts for her
    • Gifts for the home
    • Gift Card
    • Gifts for him
    • Birthday gifts
    • Crystal Society Gift Membership
    • Romantic gifts
    • Bestselling gifts
    • Swarovski: 125 years of light
    • Corporate Gifts
  • Wishlist Login Swarovski Club Crystal Society (SCS) Stores
  • Luxembourg | en
0
0
Swarovski
0

Follow us:

SIGN UP FOR THE SWAROVSKI CLUB 

$(this).closest('#lu-shortSCNewsletterFormConfigWrapper').find('.js-lu-shortSCNewsletterFormConfig') .formValidation( { autoFocus: false, framework: 'bootstrap', icon: { valid: null, invalid: null, validating: null }, fields: { 'values[shortSCNewsletterFormDefinition_email]': { trigger: 'blur', validators: { regexp: { regexp: new RegExp('^(?=.{0,255}$)(?=.{0,64}@)(?:[a-zA-Z0-9!#$%&\'*+\/=?^_‘{|}~-]+(?:\\.[a-zA-Z0-9!#$%&\'*+\/=?^_‘{|}~-]+)*|\"(?:[\\x01-\\x08\\x0b\\x0c\\x0e-\\x1f\\x21\\x23-\\x5b\\x5d-\\x7f]|\\\\[\\x01-\\x09\\x0b\\x0c\\x0e-\\x7f]){1,62}\")@(?:[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?\\.)+(?=[a-zA-Z0-9-]*[a-zA-Z][a-zA-Z0-9-]*$)[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?$', ''), message: 'Please enter your email address.', message_en: 'Please enter your email address.' }, notEmpty: { message: 'Please enter your email address.', message_en: 'Please enter your email address.' }, stringLength: { message: 'The number of characters for this field must be between 0 and 70', message_en: 'The number of characters for this field must be between 0 and 70', min: 0 , max: 70 }, } } } } ) .on('success.field.fv', function() { /* note: we need to check if there is an error in the form, as the plugin does a validation on field level. Validating the whole form on blur of a field is no option, as the customer does not want to see error messages on all fields when entering one field. In case of an error on at least one field we disable the submit button manually */ var $form = $(this).closest('form'); if ($form.find('.form-group.has-error').length > 0) { var $button = $form.find('.js-button'); if (!$button.hasClass('disabled')) { $button.addClass('disabled'); } } }) .on('err.field.fv', function(e, data) { if(data.element.closest('.form-combo-molecule').length){ /* Get the messages of field */ var messages = data.fv.getMessages(data.element); /* Get the error message content of the field */ var errorContent = data.element.closest('.form-combo-molecule').find('.errors'); /* Get the hidden error message of the field */ var errorField = errorContent.find('small[data-field="' + data.field + '"][style="display: none;"]'); /* Loop over the messages */ for (var i in messages) { if (errorField[1] == undefined) { var newErrorContainer = document.createElement("small"); $(newErrorContainer).attr("class", "help-block"); $(newErrorContainer).attr("data-field", data.field); $(newErrorContainer).attr("data-fv-validator", "callback"); $(newErrorContainer).attr("data-fv-for", $(data.element[0]).attr("name") ); $(newErrorContainer).attr("data-fv-result", "INVALID"); $(newErrorContainer).attr("data-tracked", "true"); $(newErrorContainer).html(messages[i]); if (errorContent.text().includes(messages[i])) { $(newErrorContainer).hide(); } errorContent.append(newErrorContainer); } } } }) .on('success.field.fv', function(e, data) { /* Remove the field messages */ $errorContent = data.element.closest('.form-combo-molecule').find('.errors'); $errorContent.find('small[data-field="' + data.field + '"]').remove(); $errorContent.find('small[data-fv-result="INVALID"]').removeAttr("style"); }) .on('success.form.fv', function() { var formId = 'shortSCNewsletter'; if (!formId || formId === 'cfRequest' || formId === 'cfResponse') { formId = 'shortSCNewsletterFormDefinition'; } ACC.tracking.pushFormSubmit(formId); }); var replaceDatePatternWithValue = function(mandatory, fieldConfigCode, fieldConfigPattern) { var date = fieldConfigPattern.toUpperCase(); var year = $("#" + fieldConfigCode + "_year").val(); var month = $("#" + fieldConfigCode + "_month").val(); var day = $("#" + fieldConfigCode + "_day").val(); date = date.replace(/[Y]+/, year); date = date.replace(/[M]+/, month); date = date.replace(/[D]+/, day); var hiddenDateField = $('.js-' + fieldConfigCode + '_hidden'); if (mandatory) { hiddenDateField.val(date); } else { hiddenDateField.val(date == "" ? "" : date); } }; var triggerFormValidation = function(fieldId, mandatory, fieldCode, dateFormat) { replaceDatePatternWithValue(mandatory, fieldCode, dateFormat); $('.js-fieldCode').formValidation('revalidateField', 'values[fieldCode_'+ fieldId + ']'); }; var removeDateMoleculeError = function(molecule) { if(molecule.hasClass('has-error')){ molecule.removeClass('has-error'); molecule.find('.help-block').find('span').remove(); } };
By clicking “JOIN THE CLUB”, I join the Swarovski Club and I have read and accepted the Terms & Conditions. I understand that my data will be processed according to the Privacy Policy.

dispatcher-check

shipping
Free shipping
Free standard shipping over EUR 75
returns
Free returns
Up to 14 days to return
Chat
Need help ?
Connect using our chat
Customer Care
  • Contact Us
  • FAQ
  • Shipping & Returns
  • Product Care & Repair
  • COVID-19
About Us
  • About Us
  • Jobs & Career
  • Swarovski Mobility
  • Corporate Gifts
  • For Professionals
  • Sustainability
  • Sitemap
Membership
  • Swarovski Club
  • Swarovski Crystal Society (SCS)
Legal
  • Terms Of Use
  • Terms & Conditions
  • Privacy Policy
  • Cookie Consent
  • Imprint
  • Anti Modern Slavery
Copyright ⓒ 2021 Swarovski. All rights reserved.
SWAROVSKI and the SWAN logo are registered and trademarks of Swarovski AG.
Facebook Pinterest Twitter Instagram Youtube
PAYMENT OPTION
Cookies blocked
Your browser blocks cookies, please enable cookies and reload to continue using the website.