octron
Gebruiker
- Lid geworden
- 4 mrt 2008
- Berichten
- 65
oke ik heb een vraagje
[JS]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script>
$(document).ready(function(){
$("button").hover(function () {
var singleValues = $("button").val();
$("p").show("slow");
$("p").text(singleValues);
window.location = 'http://www.test.nl/test.php?Aid='+singleValues;
});
});
</script>
<style>
p { background:yellow; }
</style>
</head>
<body>
<button value="2" id="atest" style="background-color:blue" >laggguh</button><br>
<button value="3" id="atest2" style="background-color:blue" >laggguh</button><br>
<button value="4" id="atest3" style="background-color:blue" >laggguh</button><br>
<button value="5" id="atest4" style="background-color:blue" >laggguh</button><br>
<p style="display: none">Hello 2</p>
</body>
</html>
[/JS]
ik wil dus als je over een button heen gaat met de muis dat hij de waarde (value) van de button ophaalt.
hij pakt alleen altijd de value van de eerste button als ik over de andere 3 heen ga werkt hij niet ....
wie weet hier een oplossing voor ?
mvg, Michel
[JS]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script>
$(document).ready(function(){
$("button").hover(function () {
var singleValues = $("button").val();
$("p").show("slow");
$("p").text(singleValues);
window.location = 'http://www.test.nl/test.php?Aid='+singleValues;
});
});
</script>
<style>
p { background:yellow; }
</style>
</head>
<body>
<button value="2" id="atest" style="background-color:blue" >laggguh</button><br>
<button value="3" id="atest2" style="background-color:blue" >laggguh</button><br>
<button value="4" id="atest3" style="background-color:blue" >laggguh</button><br>
<button value="5" id="atest4" style="background-color:blue" >laggguh</button><br>
<p style="display: none">Hello 2</p>
</body>
</html>
[/JS]
ik wil dus als je over een button heen gaat met de muis dat hij de waarde (value) van de button ophaalt.
hij pakt alleen altijd de value van de eerste button als ik over de andere 3 heen ga werkt hij niet ....
wie weet hier een oplossing voor ?
mvg, Michel