View Single Post
Old 2004-02-21, 06:27 PM   #6
Cleo
Subversive filth of the hedonistic decadent West
 
Cleo's Avatar
 
Join Date: Mar 2003
Location: Southeast Florida
Posts: 27,936
Quote:
Originally posted by codymc12
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.

You can also put a back slash in front of the apostrophe. This way it will read correctly. The back slash let JavaScript know to read the next symbol as what it is and not a function.
__________________
Free Rides on Uber and Lyft
Uber Car: uberTzTerri
Lyft Car: TZ896289
Cleo is offline   Reply With Quote