Ik probeer met mijn pagina aan de w3c standaard te voldoen. Nou heb ik een script gemaakt die de hoogte van een iframe aanpaste aan de inhoud. Dit werkte perfect!
Ik maakte gebruik van de "onload" functie in een iframe. Nu schijnt deze functie alleen ondersteunt te worden door modzilla en internet explorer. En zal dit dus anders moeten doen om aan de W3C standaard te voldoen.
Ik heb met google de boel afgezocht maar kon niets werkends vinden. Ik heb nu een script dat de hoogte wel vergroot maar niet verkleint
De script met document.body.scrollHeight werken toch niet helemaal zoals het zou moeten.
Heeft iemand een beter script ? Liefst in ASP/VB.
Ik maakte gebruik van de "onload" functie in een iframe. Nu schijnt deze functie alleen ondersteunt te worden door modzilla en internet explorer. En zal dit dus anders moeten doen om aan de W3C standaard te voldoen.
Ik heb met google de boel afgezocht maar kon niets werkends vinden. Ik heb nu een script dat de hoogte wel vergroot maar niet verkleint
De script met document.body.scrollHeight werken toch niet helemaal zoals het zou moeten.
Heeft iemand een beter script ? Liefst in ASP/VB.
code:
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>homepage</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-language" content="en">
<link rel="stylesheet" type='text/css' href="css/home.css">
</head>
<body>
<script language="vbscript" type="text/vbscript" src="scripts/menu.asp"></script>
<div id="page">
<div id="top">
<iframe name="top" width="762" height="80" src="top.html" frameborder="0"></iframe>
</div>
<div id="nav">
<a class="nav" href="home.html" target="inhoud"> Home </a>|
<a class="nav" href="linkje" target="inhoud"> Adressen </a>|
<a class="nav" href="linkje" target="inhoud"> Agenda </a>|
<a class="nav" href="linkje" target="inhoud"> Vacatures </a>|
<a class="nav" href="linkje" target="inhoud"> Sitemap </a>|
<a class="nav" href="linkje" target="inhoud"> Zoeken </a>|
<a class="nav" href="linkje" target="inhoud"> Webmail </a>|
<a class="nav" href="linkje" target="inhoud"> Inloggen </a>
</div>
<div id="left">
<table cellpadding="2" width = "100%">
<!-- Hier begint menu School -->
<tr><td class="Headschool" onclick="ShowHide(0)">De School</td></tr>
<tr>
<td>
<div id="link0" class="LINKSOFF">
<a class="menu" href="sub/adressen.html" target="inhoud">Adressen en bereikbaarheid</a><br />
<a class="menu" href="sub/history.html" target="inhoud">Historie</a><br />
<a class="menu" href="linkje" target="inhoud">Bestuurlijke stuctuur</a><br />
<a class="menu" href="linkje" target="inhoud">Missie en koers</a><br />
<a class="menu" href="linkje" target="inhoud">Begeleiding</a><br />
<a class="menu" href="linkje" target="inhoud">Kwaliteit</a><br />
</div>
</td>
</tr>
<!-- Hier begint menu Groep 8 -->
<tr><td class="Headgroep8" onclick="ShowHide(1)">Voor groep 8</td></tr>
<tr>
<td>
<div id="link1" class="LINKSOFF">
<a class="menu" href="linkje" target="inhoud">Welkom</a><br />
<a class="menu" href="linkje" target="inhoud">Brugklassen</a><br />
<a class="menu" href="linkje" target="inhoud">Vakken</a><br />
<a class="menu" href="linkje" target="inhoud">Begeleiding</a><br />
<a class="menu" href="linkje" target="inhoud">Activiteiten</a><br />
<a class="menu" href="linkje" target="inhoud">Bereikbaarheid</a><br />
<a class="menu" href="linkje" target="inhoud">Open dagen</a><br />
</div>
</td>
</tr>
<!-- Hier begint menu Nieuws -->
<tr><td class="Headnieuws" onclick="ShowHide(2)">Nieuws</td></tr>
<tr>
<td>
<div id="link2" class="LINKSOFF">
<a class="menu" href="linkje" target="inhoud">Brugklas-plus</a><br />
<a class="menu" href="linkje" target="inhoud">Sportklas</a><br />
<a class="menu" href="linkje" target="inhoud">Kunst- en cultuurlijn</a><br />
<a class="menu" href="linkje" target="inhoud">Bovenbouw VMBO-T</a><br />
<a class="menu" href="linkje" target="inhoud">Gymnasium</a><br />
<a class="menu" href="linkje" target="inhoud">Bovenbouw HAVO/VWO</a><br />
<a class="menu" href="linkje" target="inhoud">Archief</a><br />
</div>
</td>
</tr>
</table>
</div>
<div id="center">
<iframe name="inhoud" id="inhoud" width="100%" height="410" src="home.html" scrolling="no" frameborder="0"></iframe>
</div>
<div id="bottom">
<a class="nav" href="**********" title="********">© *******</a>
</div>
</div>
</body>
</html> |