16 lines
365 B
HTML
16 lines
365 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>Testing :jseval</title>
|
||
|
<script type="text/javascript">
|
||
|
function do_log() {
|
||
|
console.log("Hello from the page!");
|
||
|
}
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
Nothing to see here, only some JS functions defined.
|
||
|
</body>
|
||
|
</html>
|