The Brian Grant Foundation can provide you with the tools you need to live well—whatever that means to you. We provide evidence-based resources to support well-being and connect people with Parkinson’s to a supportive community.
The Brian Grant Foundation empowers people impacted by Parkinson’s disease to lead active and fulfilling lives. Our mission is to educate people living with PD—and their loved ones—about effective, evidence-based practices that enhance their physical and emotional well-being. We’re also a caring, supportive community that can provide encouragement and inspiration to help you live what’s possible today.
// Select all the event card elements
var eventCards = document.querySelectorAll(‘.tribe-common-g-row.tribe-events-widget-events-list__event-row’); // Function to add the ‘highlight’ class
function addHighlight() {
this.classList.add(‘highlight’);
} // Function to remove the ‘highlight’ class
function removeHighlight() {
this.classList.remove(‘highlight’);
} // Attach event listeners to each event card
eventCards.forEach(function(card) {
card.addEventListener(‘mouseover’, addHighlight);
card.addEventListener(‘mouseout’, removeHighlight);
}); document.querySelectorAll(‘.kb-section-link-overlay’).forEach(item => {
item.addEventListener(‘mouseenter’, () => {
// Target the figure and scale it
const figure = item.previousElementSibling.querySelector(‘figure’);
if (figure) {
figure.style.transform = ‘scale(1.1)’;
} // Add fake hover effect to the anchor tag inside the button
const anchor = item.closest(‘.kt-inside-inner-col’).querySelector(‘.wp-block-button__link’);
if (anchor) {
anchor.classList.add(‘fake-hover’);
}
}); item.addEventListener(‘mouseleave’, () => {
// Target the figure and reset its scale
const figure = item.previousElementSibling.querySelector(‘figure’);
if (figure) {
figure.style.transform = ‘scale(1)’;
} // Remove fake hover effect from the anchor tag inside the button
const anchor = item.closest(‘.kt-inside-inner-col’).querySelector(‘.wp-block-button__link’);
if (anchor) {
anchor.classList.remove(‘fake-hover’);
}
});
});