Premiazione del Golden Foot 2017

Premiazione del Golden Foot 2017 Tutti i cimeli esposti sono di proprietà esclusiva di Memorabilia Stars e protetti da Copyright.

Esposizione ufficiale della UEFA per la finale del CAMPIONATO EUROPEO U19 del 2019

Esposizione ufficiale della UEFA per la finale del CAMPIONATO EUROPEO U19 del 2019 Maglia numero 9 nazionale Olandese di Johan Cruyff utilizzata durante le qualificazioni mondiali del 1977. Maglia della nazionale Francese numero 15 di Michel Platini indossata durante il suo primo mondiale, Argentina 1978″ Maglie da gioco della nazionale italiana di Roberto Baggio utilizzate […]

// 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); } }); }); });