1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-07-04 02:35:29 +00:00
elinks/test/ecmascript/scripts.html

18 lines
207 B
HTML
Raw Normal View History

2021-05-12 18:05:15 +00:00
<!DOCTYPE html>
<html>
<body>
<button onclick="myFunction()">Try it</button>
<p id="demo"></p>
<script>
function myFunction() {
var x = document.scripts.length;
alert(x);
}
</script>
</body>
</html>