mouse over berichtje
hallo,
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.
beetje googlen help ook.
dat 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?
superwauwie 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.