-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrectangle.html
36 lines (31 loc) · 1.14 KB
/
rectangle.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML Basic 1.1//EN"
"http://www.w3.org/TR/xhtml-basic/xhtml-basic11.dtd">
<html>
<head>
<meta name=\"viewport\" content=\"width=device-width, user-scalable=yes\" />
<style type="text/css"> html, body { width:100%; height: 100%; margin: 0px; padding: 0px; } </style>
</head>
<body>
<script>
function doClick() {
window.open('https://play.google.com/store/apps/details?id=tech.upride&gl=AT');
var xmlhttp = new XMLHttpRequest();
xmlhttp.open("GET", "https://www.tankpirat.de/api/reportClick?tag=upride_rectangle");
xmlhttp.send();
}
</script>
<script>
window.onload = function () {
console.log('Dokument geladen');
var request = new XMLHttpRequest();
request.open("GET","https://play.google.com/store/apps/details?id=tech.upride&gl=AT");
request.send();
var xmlhttp = new XMLHttpRequest();
xmlhttp.open("GET", "https://www.tankpirat.de/api/reportImpression?tag=upride_rectangle");
xmlhttp.send();
}
</script>
<img src="landliebe.github.io/rectangle3.png" style="margin: 0px" onClick="javascript:doClick()">
</body>
</html>