Java Tips
The Java language, utility and application server tips.
| Tip | Details |
| dota |
[*map/map_all_coml11.txt |
| dota |
[*map/map_cnc2_13_mordy.txt |
| Java Tips Site Todd Piper |
Find some great Java tips on http://java.sun.com/jdc/JDCTechTips/2001/tt1023.html |
| Make table cells into active buttons Geoff |
<script LANGUAGE="JavaScript" TYPE="text/javascript"> <!-- function over(nRow) { document.all('td' + nRow).style.borderStyle='outset'; document.all('td' + nRow).style.borderWidth='1px'; document.all('td' + nRow).style.cursor='hand'; } function out(nRow) { document.all('td' + nRow).style.borderStyle= 'none'; //document.all('td' + nRow).style.borderWidth='1px'; document.all('td' + nRow).style.cursor='default'; } // --> </script> <table> <tr> <td id=td1 onMouseOver="over('1');" onMouseOut="out('1');"> Button Label </td> </tr> </table> |
Click here to add your own tips.