Back
Back
Accesskeys list
  • 0 - Header
  • 1 - Main content
  • 2 - Footer
Partner Products with Crystals from Swarovski
World of Swarovski
| South Africa
Stores
Logo
Login

Please log in

Log in

or register

Register
Wish list

Logo
Login

Please log in

Log in

or register

Register
Please enter search term
Suggestions
New in
New in
Jewellery
Jewellery
Necklaces
Pendants
Earrings
Bracelets
Sets
Rings
Brooches
Swarovski Remix Collection
MOST POPULAR JEWELLERY
Watches
Watches
New In
Rose Gold Tone
Silver Tone
Gold Tone
Black Tone
Metal bracelet
Leather strap
Fabric and crystal strap
Accessories
Accessories
Pens
Smartphone cases
USB Accessories
Key rings
Sunglasses
Handbags
Cardholders
Fashion books
Decorations
Decorations
Christmas
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
Country
| South Africa
Partner Products with Crystals from Swarovski
World of Swarovski
More
New in
Jewellery
Watches
Accessories
Decorations
Gifts
Collections
Style Edit
More
Please enter search term
Suggestions
Please enter search term
Suggestions
Jewellery
Necklaces
Pendants
Earrings
Bracelets
Sets
Rings
Brooches
Swarovski Remix Collection
MOST POPULAR JEWELLERY
DAZZLING SWAN
DISCOVER MORE
Close
Fine Jewellery
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
GOLD TONE WATCHES
SHOP NOW
Close
Accessories
Pens
Smartphone cases
USB Accessories
Key rings
Sunglasses
Handbags
Cardholders
Fashion books
Close
Decorations
Christmas
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

Swarovski BEBRILLIANT


Follow us:

$(this).siblings('.js-za-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

Home

Swarovski BEBRILLIANT


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 jewellery 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
Our member-only collective that offers exclusive gifts and rewards, events, and sparkling surprises.
FREE SIGN-UP
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.