View Single Post
Old 2004-02-21, 06:21 PM   #4
codymc12
WHO IS FONZY!?! Don't they teach you anything at school?
 
Join Date: Nov 2003
Posts: 45
Solved... so silly.

Basically, it was the use of a ' within the window.status='blah blah'

Specifically (in case anyone else ever runs into this):

onMouseOver="window.status='Mike's Apartment';return true"

SHOULD BE

onMouseOver="window.status='Mikes Apartment';return true"

No apostrophe in the 'Mikes' - that is what was screwing everything up.

I hate code sometimes.
codymc12 is offline   Reply With Quote