Click here to Skip to main content
15,900,424 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: LocalHost and Browser Pin
ohdil22-Jul-04 13:40
ohdil22-Jul-04 13:40 
GeneralRe: LocalHost and Browser Pin
Javier Lozano22-Jul-04 14:18
Javier Lozano22-Jul-04 14:18 
GeneralGarbage Collection in JS Pin
abc87616-Jul-04 0:15
abc87616-Jul-04 0:15 
GeneralAWS Report for OpenListing Pin
Sumit Kapoor15-Jul-04 21:24
Sumit Kapoor15-Jul-04 21:24 
GeneralRe: AWS Report for OpenListing Pin
zahedonline30-Oct-08 3:41
zahedonline30-Oct-08 3:41 
GeneralHere's a curly one... Pin
Anonymous15-Jul-04 20:20
Anonymous15-Jul-04 20:20 
GeneralRe: Here's a curly one... Pin
Javier Lozano18-Jul-04 17:00
Javier Lozano18-Jul-04 17:00 
Generalthe selectList can't make selected in Netscape... Pin
cool_man15-Jul-04 17:10
cool_man15-Jul-04 17:10 
I want to make a select box in a Javascript function, this is my code:


var val = new Array('0','1','2','3','4','5');
var lis = new Array('java','php','asp','jsp','vbscript','jscript');

function makeOption(obj,selectID)
{

obj.options[0] = new Option(lis[0],val[0],false,false)
for(i=1;i<lis.length;i++)
if (val[i]==selectID){
obj.options[i] = new Option(lis[i],val[i],false,true);
}
else{
obj.options[i] = new Option(lis[i],val[i],false,false);
}
}


var selectID = 3
makeOption(document.form1.ProgramList,selectID);

The trouble is in Netscape the selectlist can't make selected with selectID("asp"), the selectlist its always select the first item "java". But this code run correct in IE.

Is Anybody can help me, please? Thanks for all response!
QuestionCSS Borders Always White??? Pin
Josh Koppang15-Jul-04 12:57
Josh Koppang15-Jul-04 12:57 
AnswerRe: CSS Borders Always White??? Pin
Andrew Quinn AUS15-Jul-04 22:03
Andrew Quinn AUS15-Jul-04 22:03 
GeneralFacing problems with retaining value of session variable during paging in ASP Pin
techj200215-Jul-04 11:25
techj200215-Jul-04 11:25 
GeneralHosting .NET Windows Forms Controls in IE Pin
OBRon15-Jul-04 11:22
OBRon15-Jul-04 11:22 
GeneralRe: Hosting .NET Windows Forms Controls in IE Pin
Javier Lozano18-Jul-04 17:04
Javier Lozano18-Jul-04 17:04 
GeneralRe: Hosting .NET Windows Forms Controls in IE Pin
OBRon19-Jul-04 3:10
OBRon19-Jul-04 3:10 
Questionhow to download from client to server Pin
Member 120813914-Jul-04 22:25
Member 120813914-Jul-04 22:25 
AnswerRe: how to download from client to server Pin
Javier Lozano18-Jul-04 17:06
Javier Lozano18-Jul-04 17:06 
GeneralRe: how to download from client to server Pin
Member 120813921-Jul-04 1:50
Member 120813921-Jul-04 1:50 
GeneralSetting up a audio recorder at my web site Pin
pork chop14-Jul-04 18:38
pork chop14-Jul-04 18:38 
GeneralRe: Setting up a audio recorder at my web site Pin
Colin Angus Mackay14-Jul-04 20:30
Colin Angus Mackay14-Jul-04 20:30 
GeneralRe: Setting up a audio recorder at my web site Pin
pork chop15-Jul-04 18:45
pork chop15-Jul-04 18:45 
GeneralA Question About Picture Frames Pin
Roger Wright14-Jul-04 14:40
professionalRoger Wright14-Jul-04 14:40 
GeneralRe: A Question About Picture Frames Pin
palbano14-Jul-04 16:45
palbano14-Jul-04 16:45 
GeneralRe: A Question About Picture Frames Pin
Josh Koppang15-Jul-04 13:08
Josh Koppang15-Jul-04 13:08 
GeneralRe: A Question About Picture Frames Pin
Roger Wright15-Jul-04 20:27
professionalRoger Wright15-Jul-04 20:27 
Generalhtml / possible Java script question. Pin
ztner14-Jul-04 9:10
ztner14-Jul-04 9:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.