You are here: irt.org | FAQ | JavaScript | Link | Q939 [ previous next ]
Using the following will cause problems on Internet Explorer 4:
location = 'next.html'
This method of altering the documents location is now deprecated in favour of altering the windows location, preferably the window locations href property:
location.href = 'next.html';