Webbserver - Love Blomberg

Show sourcecode

The following files exists in this folder. Click to view.

public_html/gamla-kurser/webbutv2/övningar/js_start/

js/
js_start_a.html
js_start_b.html
js_start_c.html
js_start_d.html
js_start_e.html
js_start_f.html
js_start_g.html
js_start_i.html
js_start_k.html
js_start_l.html
start.html

js_start_e.html

24 lines ASCII Windows (CRLF)
<!doctype html>
<html lang="sv">
<head>
    <meta charset="utf-8">
    <meta content="width=device-width, initial-scale=1" name="viewport">
    <title>JS Start E</title>
</head>
<body>
<h1>JS Start E</h1>
<button onclick="revealName()">Klicka mig</button>
<div id="textDiv"></div>

<script>
    var namn = 'Love Blomberg';

    const button = document.getElementById('textButton');
    const div = document.getElementById('textDiv');

    function revealName() {
        div.innerHTML = namn;
    }
</script>
</body>
</html>