A collection of articles concerning compliance with applicable laws, regulations and rules, and preserving the integrity and reputation of institutions.
The shift from manual to automated, data-driven risk assessment is expected to transform how banks manage and price financial crime risk, promoting fairer practices and stronger standards across the industry.
Here's how you can gather reliable compliance data to inform your self-assessment of risk performance and build better correspondent relationships.
Sign up for our newsletter.
Lorem ipsum dolor sit amet consect adipisicing elit. Possimus magnam voluptatum cupiditate veritatis in accusamus quisquam.
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
document.addEventListener('DOMContentLoaded', function() {
// Get all forms on the page
const forms = document.querySelectorAll('form');
// Add submit event listener to each form
forms.forEach(function(form) {
form.addEventListener('submit', function(event) {
// Get the form ID or name for tracking
const formIdentifier = form.id || form.getAttribute('name') || 'unnamed-form';
// Check if gtag is available (GA4)
if (typeof gtag === 'function') {
gtag('event', 'form_submission', {
'event_category': 'Forms',
'event_label': formIdentifier,
'value': 1
});
}
// Fallback for Universal Analytics (GA3)
else if (typeof ga === 'function') {
ga('send', 'event', {
eventCategory: 'Forms',
eventAction: 'submit',
eventLabel: formIdentifier
});
}
console.log(`Form submission tracked: ${formIdentifier}`);
});
});
});