Ciro Santilli OurBigBook.com $£ Sponsor €¥ 中国独裁统治 China Dictatorship 新疆改造中心、六四事件、法轮功、郝海东、709大抓捕、2015巴拿马文件 邓家贵、低端人口、西藏骚乱
web-cheat/js-image-load.html
<!doctype html>
<html lang=en>
<head>
<meta charset=utf-8>
<title>js-image-load</title>
</head>
<body>
<div>Click me to load the image.</div>
<img height="340" style="border:5px solid black;">
</body>
<script>
img = document.getElementsByTagName('img')[0];
document.getElementsByTagName('div')[0].addEventListener(
'click',
function(e) {
    img.setAttribute('src', "https://raw.githubusercontent.com/cirosantilli/media/master/Ciro_Santilli's_learn_teach_apply_logo.png")
},
false
);
</script>
</html>