PDA

View Full Version : Need help displaying the selections <select> from a selection list


hogman
12-03-2002, 03:55 AM
I am very new to web programming and not having done much programming since 1995 I am trying to get up to date!
For my WEB1 class I am trying to display the selections made in the selection list on my form. I am allowing the user to make up to seven selections. I will validate for at least one selection, but will display (document.write) all the selections in a new window. I understand the validation but need a little help with the display.

glenngv
12-03-2002, 04:10 AM
if all the selections are stored in a variable, you would display it in a new window like this:

win = window.open("","_blank","width=500,height=400");
win.document.write(allselections);
win.document.close();