Urban Talk

Wij voor de Jeugd is ook in Krispijn actief! In de Koloriet vind je Wij voor de Jeugd o.a. op de vrijdagavond met Urban Talk. Kom ook en zie zelf hoe tof het is. Je kan van alles doen: van workshops tot gewoon chillen, je bent welkom! Heb je een tof idee deel het met ons en werk mee om de leukste activiteiten te organiseren.
Leeftijd: 8 tot 14 jaar
Tijd: van 18:00 tot 20:00 uur
Locatie: Koloriet
routebeschrijving
Toevoegen aan agenda
jQuery(document).ready(function($) {
let shareContainer = $('.fusion-social-networks');
// Get the current page URL
let pageURL = window.location.href;
// Create the "Copy" button with same styles
let copyButton = `
`;
// Append it to the social icons container
shareContainer.append(copyButton);
// Copy to clipboard function
$(document).on('click', '.copy-to-clipboard', function(event) {
event.preventDefault(); // Prevent default link behavior
let tempInput = $('');
$('body').append(tempInput);
tempInput.val(pageURL).select();
document.execCommand('copy');
tempInput.remove();
// Provide user feedback
let icon = $(this).find('i');
icon.attr('title', 'Copied!');
icon.css('background-color', '#28a745'); // Change background to green on success
// Reset after 2 seconds
setTimeout(() => {
icon.attr('title', 'Copy link');
icon.css('background-color', '#6c757d'); // Reset back to original
}, 2000);
});
});