Switch to full style
JavaScript code examples
Post a reply

row highlight of table

Mon Sep 12, 2011 7:30 pm

row highlight and mouse cursor change of table tag :
Code:
<html>
<
body>
<
table>
 <tr>
  <th>Match</th>
  <th>Results</th>
  <th>Date</th>
</
tr>
 <tr onMouseOver="this.style.background='#0000FF'; this.style.color='#F00000';this.style.cursor='pointer';" 
onMouseOut
="this.style.background='#FFFFFF'; this.style.color='#000000'">
   <td>Team1-vs-Team3</td>
   <td>1-0</td>
   <td>2/3/2009</td>
 <tr onMouseOver="this.style.background='#0000FF'; this.style.color='#F00000';this.style.cursor='pointer';" 
onMouseOut
="this.style.background='#FFFFFF'; this.style.color='#000000'">
   <td>Team2-vs-Team4</td>
   <td>3-2</td>
   <td>3/3/2009</td>
 </tr>
</
table>
</
body>
</
html>
 




Post a reply
  Related Posts  to : row highlight of table
 Div Table with css row span     -  
 Using table in latex     -  
 table creation     -  
 table row hover     -  
 Creating table using div tag     -  
 Table with colored background     -  
 Operator Precedence table     -  
 single table inheritance     -  
 lowercase table content     -  
 Full scrollable table     -  

Topic Tags

JavaScript Variables