Thursday, September 20, 2007

Firefox prefers Location to Navigate()

I found out today that the following works with IE, but not with Firefox:

window.navigate('theLink') ;

I replaced it with the following, and everything is moving smoothly again in both browsers:

window.location='theLink';

No comments: