View Single Post
  #14 (permalink)  
Old 02-06-2004, 05:43 PM
httpman's Avatar
httpman httpman is offline
WebProWorld Pro
 

Join Date: Aug 2003
Location: France
Posts: 196
httpman RepRank 0
Default

Hello technica

This issue could come from the links names. Many spaces, some ':' or ',' etc... Such an adress could be seen as "illegal" with anything else than the pair IE + PC, because IE on a PC "escapes" the URL. IE on a Mac (and probably Safari dito) doesn't.

You could try to use the "escape" javascript function to transcode your links, within the "window.location.href=..." line :

---------------------
function go_review_menu() {

choice = document.gamereviews.review_id.selectedIndex;

if ( document.gamereviews.review_id[choice].value!= "")
window.location.href = escape(document.gamereviews.review_id[choice].value);
}
---------------------

JP
__________________
www.net-createurs.com [ french only website sorry ! ]
Reply With Quote