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_d.html

17 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 D</title>
</head>
<body>
<h1>JS Start D</h1>
<input id="textDiv" name="Textruta" type="text">
<script>
    var namn = 'Love Blomberg';
    const Textruta = document.getElementById('textDiv');
    Textruta.value = namn;
</script>
</body>
</html>