login  Naam:   Wachtwoord: 
Registreer je!
 Forum

Formulier

Offline break84 - 10/04/2007 10:12 (laatste wijziging 11/04/2007 10:33)
Avatar van break84Nieuw lid Ik gebruik onderstaande code, op meerdere plaatsen in mijn website bij de formulieren. Helaas gaat dit niet altijd goed. Op het ene punt werkt het prima en kun je met je muis over het vraagteken gaan en dan krijg je netjes de uitleg te zien, maar de andere keer gebeurt er niets. Weet iemand misschien, wat ik fout doe?
  1. <td><a style="cursor: hand;"
  2. onMouseOver="showDetails('popup10',null,null)"
  3. onMouseOut="startTimer(this)"><img src="img/icons/help2_ico.gif" alt="" width="16" height="16" hspace="3" border="0"></a><TABLE BGCOLOR="#FFFF99" Width="90" CLASS="tooltip"
  4. ONMOUSEOVER="stopTimer()" ONMOUSEOUT="startTimer(this)" BORDER=0 ID="popup10" STYLE="border:1px gray solid;" cellpadding="1" cellspacing="1"><TR><td
  5. CLASS="tooltiptxt">Tekst<td></TR></TABLE></td>


  1. <SCRIPT>
  2. <!--
  3.  
  4. // Copyright 1999 InsideDHTML.com, LLC. All rights reserved
  5. // For more information see www.siteexperts.com
  6. // This script can be reused as long as this copyright notice is maintained
  7.  
  8. var iDelay = 200
  9. var sDisplayTimer = null, oLastItem
  10.  
  11. function getRealPos(i,which) {
  12. iPos = 0
  13. while (i!=null) {
  14. iPos += i["offset" + which]
  15. i = i.offsetParent
  16. }
  17. return iPos
  18. }
  19.  
  20. function showDetails(sDest,itop,ileft) {
  21. if (document.all) {
  22. var i = event.srcElement
  23. stopTimer()
  24. dest = document.all[sDest]
  25. if ((oLastItem!=null) && (oLastItem!=dest))
  26. hideItem()
  27. if (dest) {
  28. if (ileft)
  29. dest.style.pixelLeft = ileft
  30. else
  31. dest.style.pixelLeft = getRealPos(i,"Left") + i.offsetWidth + 5
  32. if (itop)
  33. dest.style.pixelTop = itop
  34. else
  35. dest.style.pixelTop = getRealPos(i,"Top")
  36. dest.style.display = "block"
  37. }
  38. oLastItem = dest
  39. }
  40. }
  41.  
  42. function stopTimer() {
  43. clearTimeout(sDisplayTimer)
  44. }
  45.  
  46. function startTimer(el) {
  47. if (!el.contains(event.toElement)) {
  48. stopTimer()
  49. sDisplayTimer = setTimeout("hideItem()",iDelay)
  50. }
  51. }
  52.  
  53. function hideItem() {
  54. if (oLastItem)
  55. oLastItem.style.display="none"
  56. }
  57. //-->
  58. </SCRIPT>

2 antwoorden

Gesponsorde links
Offline Ultimatum - 10/04/2007 10:35
Avatar van Ultimatum PHP expert Laat je javascript functies ook even zien want hier hebben we niets aan..
Offline CDNC - 10/04/2007 10:51
Avatar van CDNC PHP ver gevorderde En hoorde je ooit over de Enter- en Tab-toetsen?
Gesponsorde links
Dit onderwerp is gesloten.
Actieve forumberichten
© 2002-2024 Sitemasters.be - Regels - Laadtijd: 0.188s