Text Rollover

  • Thread starter Thread starter Rick V
  • Start date Start date
R

Rick V

I was unsure where to post this. I am getting a Java error it says it is
looking for ;
Any ideas?

Thanks in advance!!!!

<tr>
<td>05/05/2003</td>
<td><FONT onMouseOver="this.innerHTML = 'John Smith'"
onMouseOut="this.innerHTML = 'John'">John</FONT></td>
</tr>
 
Hi Rick,

That code looks fine to me - expected ; is a very common javascript error -
it doesn't actually mean you're missing a ; Try copying and pasting this
code back to your page
<font onmouseover="this.innerHTML = 'John Smith';"
onmouseout="this.innerHTML = 'John';">John</font>
this will work.

Jon
Microsoft MVP - FP
 
Back
Top