mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-03 08:07:17 -05:00
18 lines
214 B
HTML
18 lines
214 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
|
|
<button onclick="myFunction()">Try it</button>
|
|
|
|
<p id="demo"></p>
|
|
|
|
<script>
|
|
function myFunction() {
|
|
var x = document.scripts.length;
|
|
window.alert(x);
|
|
}
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|