1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-20 00:15:31 +00:00
elinks/test/ecmascript/console_log.html
2021-02-22 01:52:56 +01:00

14 lines
185 B
HTML

<html>
<body onload="hello()">
<script>
function hello() {
console.log("Hello World");
}
</script>
<pre>
You'll find the console.log
at config dir (~/.elinks)
</pre>
</body>
</html>