D2D Events: Where Growth Happens
Get ready to learn, connect, and level up—see what’s coming next.
document.addEventListener("DOMContentLoaded", function() {
let stateDropdown = document.querySelector(".dec-state-filter-list");
if (stateDropdown) {
stateDropdown.querySelectorAll("li.dec-state-list").forEach(function(item) {
if (item.textContent.trim() === "Hawaii") {
item.textContent = "HI";
}
});
}
});
jQuery(document).ready(function($) {
function updateLinks() {
$('.decm_weburl a')
.text('Get Tickets') // Change text
.css({
'color': '#780402', // Change text color
'important': 'true' // Ensure priority (though this may not always work in jQuery)
});
// If the jQuery `.css()` is not working due to existing styles, use `.attr()` to add an inline style
$('.decm_weburl a').attr('style', 'color: #780402 !important;');
}
// Run immediately after page loads
updateLinks();
// Run every second
setInterval(updateLinks, 1000);
});
jQuery(document).ready(function ($) {
function updateLinks() {
$(".ecs-event").each(function () {
var getTicketUrl = $(this).find(".decm_weburl a").attr("href");
if (getTicketUrl) {
// Update image link
$(this).find(".decm-show-image-left a").attr("href", getTicketUrl);
// Update both h2 links
$(this).find(".entry-title a").attr("href", getTicketUrl);
}
});
}
// Run immediately after page loads
updateLinks();
// Run every second
setInterval(updateLinks, 1000);
});
Stay Connected – Never Miss an Update!
Subscribe to our calendar and get real-time updates on events, trainings, and exclusive opportunities. Stay ahead and stay informed!




