Anche nel mondo del tennis non sono mancati gli scherzi più o meno riusciti
Il primo d’aprile è una data nota come “pesce d’aprile” quando cioè adulti e bambini si ingegnano per organizzare scherzi più o meno divertenti.
Le origini di questa tradizione non sono però conosciute e varie sono le...
"use strict";
setTimeout(function() {
var slot = 'MAGAZINE_SLOT_300x300_2';
fetch('https://api.tennistalker.it/api/positioned-banners/' + slot)
.then(function(response) {
return response.json();
})
.then(function(response) {
var className = '.tt-ad-magazine-slot_300_2';
document.querySelectorAll(className).forEach(function(e) {
var link = e.querySelectorAll('a')[0];
link.href = response.destination;
var image = e.querySelectorAll('img')[0];
image.src = response.image_url;
});
});
}, 2000);
più popolari
"use strict";
setTimeout(function() {
var slot = 'MAGAZINE_SLOT_300x200_1';
fetch('https://api.tennistalker.it/api/positioned-banners/' + slot)
.then(function(response) {
return response.json();
})
.then(function(response) {
var className = '.tt-ad-magazine-slot_200_1';
document.querySelectorAll(className).forEach(function(e) {
var link = e.querySelectorAll('a')[0];
link.href = response.destination;
var image = e.querySelectorAll('img')[0];
image.src = response.image_url;
});
});
}, 2000);