Easy Coding
  Forum Wiki Tagging Projekte Karte RSS
» Start
» All Recent Changes
» Wiki Suche
» Wiki Hilfe

Coder How To's

Algorithmen Informationen

edit SideBar

Neue Wiki Eintrage finden Sie unter easy-coding.de/wiki.

Tabellenzeilen klickbar

tabellenzeilen-klickbar.html
  1. <title>Tabellenzeilen klickbar</title>
  2. <style type="text/css">
  3. table.clickable {width:400px}
  4. table.clickable tr:hover { cursor:pointer; cursor:hand; background-color:#efefef}
  5. </style>
  6. </head>
  7. <table border="1" class="clickable">
  8. <tr onclick="window.location.href='1.html'">
  9.         <td>1/1</td>
  10.         <td>1/2</td>
  11. <tr onclick="window.location.href='2.html'">
  12.         <td>2/1</td>
  13.         <td>2/2</td>
  14. </table>
  15. </body>
  16. </html>
Zuletzt geändert am 17.01.2008 18:22 Uhr
  Impressum