code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
| <html>
<head>
<script language='JavaScript'>
function jaaa()
{
window.parent.location='index.html';
}
</script>
</head>
<body>
<input value='flikkerop' type='button' onClick='jaaa();'>
</body>
</html> |
Hoe kan ik het nu zo maken dat als er gedrukt wordt op 't knopje.. dat index.html in een ander frame geopend wordt dan 'parent'?