mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-02 08:57:19 -04:00
14 lines
185 B
HTML
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>
|