-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopgave9.html
More file actions
58 lines (35 loc) · 1.43 KB
/
opgave9.html
File metadata and controls
58 lines (35 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="css/common.css">
<script src="javascript/opgave9.js"></script>
</head>
<body>
<div id="wrapper">
<h1 id="overskrift">Opgave 9: Alert og confirm</h1>
<h2>Alert eller confirm?</h2>
<p><a href="http://google.dk" id="alertclick">Klik for at besøge Google</a></p>
<p><a href="http://bing.com" id="confirmclick">Klik for at besøge Bing</a></p>
<div id="opgaven">
<h4>Opgaven</h4>
<ol>
<li>Når man klikker på Google-linket:</li>
<li>Skal skal man modtage en "advarsel"/alert-box om, at man nu bliver sendt til fx Google</li>
</ol>
<ol start="3">
<li>Når man klikker på Bing-linket:</li>
<li>Skal man have en confirm-box, hvor man bliver spurgt "om man er sikker"</li>
</ol>
<p id="help">
Få hjælp fx her:
<a href="http://www.w3schools.com/jsref/met_win_alert.asp" target="_blank">Alert</a> og her <a
href="http://www.w3schools.com/jsref/met_win_confirm.asp" target="_blank">Confirm</a>
</p>
</div>
</div>
</body>
</html>