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