Back
Back
Accesskeys list
  • 0 - Header
  • 1 - Main content
  • 2 - Footer
Partner Products with Crystals from Swarovski
World of Swarovski
| Canada
Stores
Logo
FREE STANDARD SHIPPING OVER CAD 120.00
Login

Please log in

Log in

or register

Register
Wish list
0 Shopping Bag

Logo
Login

Please log in

Log in

or register

Register
Please enter search term
Suggestions
New in
New in
Jewelry
Jewelry
Necklaces
Pendants
Earrings
Bracelets
Sets
Rings
Brooches
Swarovski Remix Collection
Men's collection
Atelier Swarovski
MOST POPULAR JEWELRY
Watches
Watches
New In
Rose Gold Tone
Silver Tone
Gold Tone
Black Tone
Metal bracelet
Leather strap
Fabric and crystal strap
Automatic Men's Watches
Accessories
Accessories
Pens
Smartphone cases
USB Accessories
Key Rings
Sunglasses
Handbags
Cardholders
Fashion books
Decorations
Decorations
Happy holidays
Disney
Kris Bears
Characters
Home Décor
Asian symbols
SCS Exclusive Products
Special Editions
Celebrations
Nature Inspired
GIFTS
GIFTS
Bestsellers
Nicely priced gifts
Gifts for the home
Birthday gifts
Versatile gifts
Gift sets
Gifts for him
Exclusive Crystal Gifts
Timeless Gifts
Glamorous gifts
Romantic Gifts
GIFT CARD
Collections
Collections
The Iconic Collection
THE NATURE COLLECTION
VALENTINE'S DAY COLLECTION
THE DISNEY COLLECTION
Style Edit
Style Edit
Stories
#FOLLOWTHELIGHT
Membership
Membership
Country
| Canada
Partner Products with Crystals from Swarovski
World of Swarovski
More
New in
Jewelry
Watches
Accessories
Decorations
GIFTS
Collections
Style Edit
Membership
More
Please enter search term
Suggestions
Please enter search term
Suggestions
Jewelry
Necklaces
Pendants
Earrings
Bracelets
Sets
Rings
Brooches
Swarovski Remix Collection
Men's collection
Atelier Swarovski
MOST POPULAR JEWELRY
DAZZLING SWAN
DISCOVER MORE
Close
Fine Jewelry
Necklaces
Pendants
Earrings
Bracelets
Rings
Close
Watches
New In
Rose Gold Tone
Silver Tone
Gold Tone
Black Tone
Metal bracelet
Leather strap
Fabric and crystal strap
Automatic Men's Watches
GOLD TONE WATCHES
SHOP NOW
Close
Accessories
Pens
Smartphone cases
USB Accessories
Key Rings
Sunglasses
Handbags
Cardholders
Fashion books
Close
Decorations
Happy holidays
Disney
Kris Bears
Characters
Home Décor
Asian symbols
SCS Exclusive Products
Special Editions
Celebrations
Nature Inspired
Statue of Liberty
Preselling exclusively online: one of New York’s most famous landmarks, the Statue of Liberty. *Products are not intended for food contact.
SHOP NOW
Close
GIFTS
Bestsellers
Nicely priced gifts
Gifts for the home
Birthday gifts
Versatile gifts
Gift sets
Gifts for him
Exclusive Crystal Gifts
Timeless Gifts
Glamorous gifts
Romantic Gifts
GIFT CARD
BESTSELLERS
Find out our best selection of gifts to celebrate the moments that matter
SHOP NOW
Close
Collections
The Iconic Collection
THE NATURE COLLECTION
VALENTINE'S DAY COLLECTION
THE DISNEY COLLECTION
Close
Style Edit
Stories
#FOLLOWTHELIGHT
Close
Back
Home

be Swarovski Privacy Policy

Be Swarovski Privacy Policy

Simply choose your country from the list below:
Australia

Australia - English - Be Swarovski Privacy Policy

Canada

Canada - English - Be Swarovski Privacy Policy

Canada - French - Be Swarovski Privacy Policy

China

China - English - Be Swarovski Privacy Policy

China - Chinese - Be Swarovski Privacy Policy

Hong Kong

Hong Kong - English - Be Swarovski Privacy Policy

Hong Kong - Chinese - Be Swarovski Privacy Policy

Japan

Japan - English - Be Swarovski Privacy Policy

Japan - Japanese - Be Swarovski Privacy Policy

Korea

Korea - English - Be Swarovski Privacy Policy

Korea - Korean - Be Swarovski Privacy Policy

Mexico

Mexico - English - Be Swarovski Privacy Policy

Mexico - Spanish - Be Swarovski Privacy Policy

Taiwan

Taiwan - English - Be Swarovski Privacy Policy

Taiwan - Chinese - Be Swarovski Privacy Policy

United States of America

United States - English - Be Swarovski Privacy Policy

Other Countries
Privacy Policy

Follow us:

$(this).siblings('.js-ca-shortNewsletterFormConfig') .formValidation({ autoFocus: false, framework: 'bootstrap', icon: { valid: null, invalid: null, validating: null }, fields: { 'values[shortNewsletterFormDefinition_email]': { trigger: 'blur', validators: { regexp: { regexp: /^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[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 = 'shortNewsletter'; if (!formId || formId === 'cfRequest' || formId === 'cfResponse') { formId = 'shortNewsletterFormDefinition'; } 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(); } }

dispatcher-check


Contact
CUSTOMER CARE
Stores
Live Chat

Home

be Swarovski Privacy Policy


Brand
Since 1895, founder Daniel Swarovski’s mastery of crystal cutting has defined the company. His enduring passion for innovation and design has made it the world’s premier jewelry and accessory brand.
Discover more
SWAROVSKI CRYSTAL SOCIETY
Join the exclusive world of brilliance and live your crystal passion to the fullest.
BECOME A MEMBER
BE SWAROVSKI

Membership offers exclusive gifts and rewards, insider-only events and sparkling surprises.

FREE SIGN-UP
FREE STANDARD SHIPPING OVER CAD 120.00
About Us
Newsletter
FAQ
Other Swarovski Sites
Legal
Terms Of Use
Terms & Conditions
Privacy Policy
Imprint
Sitemap
Anti Modern Slavery
Cookie Consent
Corporate
Crystal For Professionals
Zirconia & Gemstones For Professionals
Corporate Gifts
Careers
Swarovskigroup.com
© Swarovski Crystal Online AG
About Us
Newsletter
FAQ
Other Swarovski Sites
Legal
Terms Of Use
Terms & Conditions
Privacy Policy
Imprint
Sitemap
Anti Modern Slavery
Cookie Consent
Corporate
Crystal For Professionals
Zirconia & Gemstones For Professionals
Corporate Gifts
Careers
Swarovskigroup.com
© Swarovski Crystal Online AG

dispatcher-check

COOKIES BLOCKED

Your browser blocks cookies, please enable cookies and reload to continue using the website.