Originariamente inviato da nikasil
webdemo ancora una cosa. se disabilito ijs non funziona +;
e' possibile ovviare?
ciao
puoi provare così ma non sono sicuro funzioni, e comunque si complica il codice e diventa difficile aggiornarlo (difficile ma non impossibile) 
codice:
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
<title>select</title>
<csscriptdict>
<script><!--
CSAg = window.navigator.userAgent; CSBVers = parseInt(CSAg.charAt(CSAg.indexOf("/")+1),10);
function IsIE() { return CSAg.indexOf("MSIE") > 0;}
function CSIEStyl(s) { return document.all.tags("div")[s].style; }
function CSNSStyl(s) { return CSFindElement(s,0); }
function CSFindElement(n,ly) { if (CSBVers < 4) return document[n];
var curDoc = ly ? ly.document : document; var elem = curDoc[n];
if (!elem) { for (var i=0;i<curDoc.layers.length;i++) {
elem = CSFindElement(n,curDoc.layers[i]); if (elem) return elem; }}
return elem;
}
function CSURLPopupShow(formName, popupName, target) {
var form = CSFindElement(formName);
var popup = form.elements[popupName];
window.open(popup.options[popup.selectedIndex].value, target);
popup.selectedIndex = 0;
}
// --></script>
</csscriptdict>
</head>
<body>
<csobj w="66" h="19" t="URLPopup" data='{ 0 = { label = "Scegli"; selected = "YES"; }; 1 = { label = "html"; url = "http://www.html.it"; }; 2 = { label = "ciao"; url = "http://www.ciao.it"; }; }' target="_top">
<form method="POST" name="cs_form_name_0">
<select name="cs_popup_name_0" onchange="CSURLPopupShow(/*CMP*/'cs_form_name_0', /*CMP*/'cs_popup_name_0', '_top');">
<option selected>Scegli
<option value="http://www.html.it">html
<option value="http://www.ciao.it">ciao
</select>
</form>
</csobj>
</body>
</html>
ciaux