In #HongKong kann man auf einer regelmäßig aktualisierten Map sehen, wo jede*r einzelne #COVID19-Infizierte wohnt, sowie sein*ihr Alter und Geschlecht erfahren. /via @laurelchorhttps://t.co/gheud3s8nX
CC-BY-NC Science Surf
accessed 07.11.2025
In #HongKong kann man auf einer regelmäßig aktualisierten Map sehen, wo jede*r einzelne #COVID19-Infizierte wohnt, sowie sein*ihr Alter und Geschlecht erfahren. /via @laurelchorhttps://t.co/gheud3s8nX
This short script is quite useful for DSGVO complaint, aeh compliant websites. Just put a grey picture in /images/externalcontent.png or wherever you want

and insert a short script in the wordpress header.
function showyou() {
$('iframe[name*=".com"]').each(function(e) {
var src=$(this).attr('name');
$(this).attr('src',src);
$(this).show();
});
}
$(document).ready(function(){
$('iframe[src*=".com"]').each(function(e) {
var src=$(this).attr('src');
$(this).attr('name',src );
$(this).attr('src','');
$(this).after('<img class="me" src="/images/externalcontent.png" onclick="$(\'.me\').hide();showyou();"/>
');
$(this).hide();
});
});