- Home
- Rolex
- Contact Us
- Edinburgh
Official Rolex Retailer
Laings
72 George Street
Edinburgh
EH2 3BX
Scotland
United Kingdom
Opening Times: 9:30 - 17:30
- Monday9:30 - 17:30
- Tuesday9:30 - 17:30
- Wednesday9:30 - 17:30
- Thursday9:30 - 17:30
- Friday9:30 - 17:30
- Saturday9:30 - 17:30
- Sunday11:00 - 17:00

document.querySelector('#rolex-contant-submit button').addEventListener('click', function(event) {
const inputEmail = document.querySelector('#rolex-contact-email input');
const inputPhone = document.querySelector('#rolex-contact-phone input');
const errorEmail = document.querySelector('#rolex-contact-email .bfb-error');
const rolexHeading = document.querySelector('.rolex-form-heading');
const rolexSubheading = document.querySelector('.rolex-form-subheading');
if(inputEmail.value || inputPhone.value) {
errorEmail.innerHTML = '';
rolexHeading.style.display = "none";
} else {
event.preventDefault();
event.stopImmediatePropagation();
errorEmail.innerHTML = '
Error: please input email address and/or phone.
';
}
rolexSubheading.style.display = "none";
}) ;