Back
Back
Accesskeys list
  • 0 - Header
  • 1 - Main content
  • 2 - Footer
South Africa | en_GB
Stores
Login
Wishlist

Logo
Logo

  • Jewellery
    • 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 and cuffs
      • Chain bracelets
      • Adjustable bracelets
      • Tennis bracelets
    • Shop by collection
      • Back
      • Atelier Swarovski
      • Essentials collection
    • Earrings
      • Back
        Discover all
      • Single earrings
      • Stud earrings
      • Hoop earrings
      • Clip earrings
      • Ear cuffs
      • Drop earrings
    • Brooches
    • How to care for your jewellery
  • Watches
    • Back
      Discover all
    • Women's watches
    • Shop by material
      • Back
      • Gold tone
      • Rose gold tone
      • Stainless steel watches
      • Leather strap
      • Metal bracelet
    • Shop by colour
      • Back
      • Black tone
      • Red tone watches
      • White tone watches
      • Blue tone watches
      • Grey tone watches
    • Shop by collection
      • Back
      • Octea
      • Cosmopolitan
      • Crystalline
    • All watches
    • How to care for your 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
    • 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
      • Bases
      • Magnets
    • Nature Inspired
      • Back
        Discover all
      • Birds
      • Sea life
      • Wild life
      • Flowers
      • Dogs and cats
      • Other animals
    • New in
    • Characters
      • Back
        Discover all
      • Kris bears
      • Disney
      • Warner Bros. crystal figurines
      • Zodiac
      • Other characters
    • Celebrations
    • Bestsellers
    • Asian symbols
      • Back
        Discover all
      • Chinese zodiac
    • Shop by collection
      • Back
      • Disney
      • SCS exclusive products
      • Kris bears
      • Limited editions
      • Warner Bros.
    • Our picks
      • Back
      • Swarovski: 125th 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
    • Swarovski: 125th years of light
    • Romantic gifts
    • Bestselling gifts
    • Corporate gifts
  • Wishlist Login Stores
  • South Africa | en_GB
Logo
GENDER PAY GAP REPORT

 

Read the Swarovski UK Gender Pay Gap Report 2019

Read the Swarovski UK Gender Pay Gap Report 2018

 

 


Follow us:

E-mail address *

Personal data will not be disclosed to any third parties. You can find more information in the Privacy Policy.

$(this).closest('#za-shortNewsletterFormConfigWrapper').find('.js-za-shortNewsletterFormConfig') .formValidation( { autoFocus: false, framework: 'bootstrap', icon: { valid: null, invalid: null, validating: null }, fields: { 'values[shortNewsletterFormDefinition_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('.swa-form-input__error-message[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", "swa-form-input__error-message"); $(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('.swa-form-input__error-message[data-field="' + data.field + '"]').remove(); $errorContent.find('.swa-form-input__error-message[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

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
  • Swarovski Created Diamonds
  • Kristallwelten
Legal
  • Website Terms Of Use
  • Terms & Conditions
  • Privacy Policy
  • Cookie Consent
  • Imprint
Copyright ⓒ 2021 Swarovski. All rights reserved.
SWAROVSKI and the SWAN logo are registered and trademarks of Swarovski AG.
Facebook Pinterest Twitter Instagram Youtube
Cookies blocked
Your browser blocks cookies, please enable cookies and reload to continue using the website.