Data update
This commit is contained in:
parent
5150844a7d
commit
4bb20c9b71
7735 changed files with 38060 additions and 199180 deletions
|
|
@ -1,29 +0,0 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>Simple Window Application</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<br>        
|
||||
|
||||
<script type="text/javascript">
|
||||
var box = document.createElement('input')
|
||||
box.style.position = 'absolute'; // position it
|
||||
box.style.left = '10px';
|
||||
box.style.top = '60px';
|
||||
document.body.appendChild(box).style.border="3px solid white";
|
||||
document.body.appendChild(box).value = "There have been no clicks yet";
|
||||
document.body.appendChild(box).style['width'] = '220px';
|
||||
var clicks = 0;
|
||||
function count_clicks() {
|
||||
document.body.appendChild(box).remove()
|
||||
clicks += 1;
|
||||
document.getElementById("clicks").innerHTML = clicks;
|
||||
};
|
||||
</script>
|
||||
|
||||
<button type="button" onclick="count_clicks()"> Click me</button>
|
||||
<pre><p> Clicks: <a id="clicks">0</a> </p></pre>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue