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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top