-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathfenster.html
53 lines (45 loc) · 2.01 KB
/
fenster.html
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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<title>JavaScript: Fenster und Dokumente</title>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="js-doku.css">
</head>
<body>
<div id="nav">
<p>Hier entsteht eine <strong>JavaScript-Dokumentation</strong> von <a href="https://molily.de/">molily</a>. Derzeit ist sie noch lückenhaft, wächst aber nach und nach. Kommentare und Feedback werden gerne per <a href="mailto:molily@mailbox.org">E-Mail</a> entgegen genommen.</p>
<p class="contents-link"><a href="./">Zum Inhaltsverzeichnis</a></p>
</div>
<h1>Fenster und Dokumente</h1>
<div class="section" id="notizen">
<h2>Notizen</h2>
<ul>
<li>window</li>
<li>Mehrere Fensterobjekte und Cross-Window-Zugriff (iframes, frames, popups)</li>
<li>document aus DOM Core und DOM HTML</li>
<li>BOM, DOM</li>
</ul>
</div>
<div id="grundlagen-fenster" class="section">
<h2>Grundlegendes zu Fenstern</h2>
<p>…</p>
</div>
<div id="grundlagen-dokumente" class="section">
<h2>Grundlegendes zu Dokumenten</h2>
<p>…</p>
</div>
<div class="sequence-navigation">
<p class="next"><a href="css.html" rel="next">Zusammenarbeit mit CSS</a></p>
<p class="prev"><a href="browser.html" rel="prev">Browserübergreifende Entwicklung</a></p>
</div>
<div id="footer">
<p><strong>JavaScript-Dokumentation</strong> · <a href="./">Zum Inhaltsverzeichnis</a></p>
<p>Autor: <a href="https://molily.de/">molily</a> · Kontakt: <a href="mailto:molily@mailbox.org">molily@mailbox.org</a></p>
<p>Lizenz: <a rel="license" href="https://creativecommons.org/licenses/by-sa/3.0/de/">Creative Commons Namensnennung - Weitergabe unter gleichen Bedingungen 3.0</a></p>
<p><a href="https://github.com/molily/javascript-einfuehrung">JavaScript-Einführung auf Github</a></p>
<p>Kostenloses Online-Buch und E-Book:<br><a href="https://testing-angular.com" lang="en" hreflang="en">Testing Angular – A Guide to Robust Angular Applications</a> (englisch)</p>
</div>
<script src="js-doku.js"></script>
</body>
</html>