tag tag
hab da n code:
ich moechte so was aehnliches machen, wie hier:web rtegistrierung
das problem bei dem code ist, dass die 2 tooltips, wenn man beide textfelder anklickt, beide gezeigt werden.
ich moechte, dass entweder das eine oder das andere angezeigt wird, wie bei WEB.DE.
was muss ich noch aendern??
gruss ich
hab da n code:
Code:
<!doctype html public "-//W3C//DTD HTML 4.0 //EN"> <html> <head> <title></title> <style type="text/css"> <!-- .bereich{ display: block; } --> </style> <script type='text/javascript'> function show(das){ if(document.getElementById(das).style.display=='none') document.getElementById(das).style.display='block'; } </script> </head> <body text="#000000" bgcolor="#FFFFFF" link="#FF0000" alink="#FF0000" vlink="#FF0000"> <table border="1" width="400"> <tr> <td> <input type="Text" class="bereich" onfocus="show('1')"> </td> <td rowspan="2" width="200"> <span id="1" style="display: none;"> das ist feld nummer 1</span> <span id="2" style="display: none;"> das ist feld nummer 2 </span> </td> </tr> <tr> <td> <input type="Text" class="bereich" onfocus="show('2')"> </td> </tr> </table> </body> </html>
ich moechte so was aehnliches machen, wie hier:web rtegistrierung
das problem bei dem code ist, dass die 2 tooltips, wenn man beide textfelder anklickt, beide gezeigt werden.
ich moechte, dass entweder das eine oder das andere angezeigt wird, wie bei WEB.DE.
was muss ich noch aendern??
gruss ich
Kommentar