Golden Foot 2017 award ceremony

2017 Golden Foot Award Ceremony All the memorabilia on display are the exclusive property of Memorabilia Stars and protected by Copyright.

Official UEFA show for the 2019 U19 EUROPEAN CHAMPIONSHIP final

Official UEFA show for the final of the U19 EUROPEAN CHAMPIONSHIP 2019 Johan Cruyff's Dutch national number 9 jersey used during the 1977 World Cup qualifiers. Michel Platini's French national team number 15 jersey worn during his first world cup, Argentina 1978 ″ game of the Italian national team of Roberto Baggio used [...]

// Run the script when the DOM is fully loaded document.addEventListener('DOMContentLoaded', function () { // Select all input fields of type 'tel' const numberInputs = document.querySelectorAll('input[type="tel"]'); // Remove non-digit characters from the input numberInputs.forEach(function(input) { input.addEventListener('input', function() { // Replace anything that is not a digit with an empty string this.value = this.value.replace(/\D/g, ''); }); }); // Limit the number of digits to 15 numberInputs.forEach(function(input) { input.addEventListener('input', function() { // Trim the value to 15 digits if it exceeds the limit if (this.value.length > 15) { this.value = this.value.slice(0, 15); } }); }); });