I need a new pair of reading glasses and I would so love for you to help me choose: The red frame or the animal printed frame??? Thank you for helping me choose : )
We use cookies to give you the best experience. If you continue we assume you are happy.
Functional
Always active
The technical storage or access is strictly necessary for the legitimate purpose of enabling the use of a specific service explicitly requested by the subscriber or user, or for the sole purpose of carrying out the transmission of a communication over an electronic communications network.
Preferences
The technical storage or access is necessary for the legitimate purpose of storing preferences that are not requested by the subscriber or user.
Statistics
The technical storage or access that is used exclusively for statistical purposes.The technical storage or access that is used exclusively for anonymous statistical purposes. Without a subpoena, voluntary compliance on the part of your Internet Service Provider, or additional records from a third party, information stored or retrieved for this purpose alone cannot usually be used to identify you.
Marketing
The technical storage or access is required to create user profiles to send advertising, or to track the user on a website or across several websites for similar marketing purposes.
jQuery(document).ready(function($) {
// Target the first accordion (.accordion-pricelist) and the second one (.accordion-enquiry-form)
var firstAccordion = $('.accordion-pricelist');
var secondAccordion = $('.accordion-enquiry-form');
// Initially, we hide the second accordion (if needed)
secondAccordion.hide();
// Set up a click event listener on the first accordion
firstAccordion.on('click', function() {
// Check if the first accordion is open
if ($(this).hasClass('brx-open')) {
// If the first accordion is open, hide the second accordion
secondAccordion.slideUp();
} else {
// If the first accordion is not open, show the second accordion
secondAccordion.slideDown();
}
});
});