mouse over berichtje
superwauwie
07/04/2008 18:16:00hallo,
ik ben al ff opzoek naar een mouse over systeem.
dat als je met de muis over een plaatje(of link) gaat dat er dan een popup bij je muis staat. en als je ervan af gaat dan verdwijnd die popup.
alvast bedankt.
ik ben al ff opzoek naar een mouse over systeem.
dat als je met de muis over een plaatje(of link) gaat dat er dan een popup bij je muis staat. en als je ervan af gaat dan verdwijnd die popup.
alvast bedankt.
PHP hulp
22/12/2024 06:58:34Jurgen assaasas
07/04/2008 18:23:00beetje googlen help ook.
superwauwie
07/04/2008 19:06:00dat werkt niet bij mij:S
ik gebruik nu deze code:
wat is hier fout aan?
ik gebruik nu deze code:
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<html>
<head>
...
<script type="text/javascript">
var txt1 = "This is the text of the first tooltip";
function TooltipTxt(n)
{
return "This is the text of the " + n + " tooltip";
}
</script>
</head>
<body>
<script type="text/javascript" src="wz_tooltip.js"></script>
...
<a href="a.htm" onmouseover="Tip(txt1)" onmouseout="UnTip()">Link 1</a>
...
<a href="b.htm" onmouseover="Tip(TooltipTxt('second'))" onmouseout="UnTip()">Link 2</a>
...
<a href="c.htm" onmouseover="Tip(TooltipTxt('third'))" onmouseout="UnTip()">Link 3</a>
...
</body>
</html>
<head>
...
<script type="text/javascript">
var txt1 = "This is the text of the first tooltip";
function TooltipTxt(n)
{
return "This is the text of the " + n + " tooltip";
}
</script>
</head>
<body>
<script type="text/javascript" src="wz_tooltip.js"></script>
...
<a href="a.htm" onmouseover="Tip(txt1)" onmouseout="UnTip()">Link 1</a>
...
<a href="b.htm" onmouseover="Tip(TooltipTxt('second'))" onmouseout="UnTip()">Link 2</a>
...
<a href="c.htm" onmouseover="Tip(TooltipTxt('third'))" onmouseout="UnTip()">Link 3</a>
...
</body>
</html>
wat is hier fout aan?
Wouter K
07/04/2008 19:16:00superwauwie
07/04/2008 19:17:00Wouter K
07/04/2008 19:19:00superwauwie
07/04/2008 19:22:00Jurgen assaasas
07/04/2008 19:32:00superwauwie
07/04/2008 19:33:00Jurgen assaasas
07/04/2008 19:38:00superwauwie
07/04/2008 19:39:00- SanThe -
07/04/2008 19:43:00superwauwie schreef op 07.04.2008 19:22:
kijk hier maar, hij doet het namelijk niet:
http://ccb1c.cc.funpic.org/fout.php
http://ccb1c.cc.funpic.org/fout.php
Dit werkt bij mij gewoon.