1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-16 01:08:31 -04:00
elinks/test/ecmascript/console_log.html

14 lines
185 B
HTML
Raw Normal View History

<html>
<body onload="hello()">
<script>
function hello() {
console.log("Hello World");
}
</script>
<pre>
You'll find the console.log
2021-02-21 19:52:56 -05:00
at config dir (~/.elinks)
</pre>
</body>
</html>