i've got a smal problem with a popup which should add a option to a select of it's opener. i allways get the error "exceptional server error". i've tried the following 2 exampels in my popup. Bibliothek ist the name (<title>) of the opener window. i hope it's possible to work with the title name because the popup reloads itself befor it executes one of the codes below or doen't that make a diffrence?
i would be very thankful for some help.
<script>
var optionName = new Option('blam', 'blim', true, true);
var length = Bibliothek.document.form1.inputAuthor.length;
Bibliothek.document.form1.inputAuthor.options[length] = optionName;
</script>
<script>
var optionName = new Option('blam', 'blim', true, true);
var length = opener.document.form1.inputAuthor.length;
opener.document.form1.inputAuthor.options[length] = optionName;
</script>
andreas owen
aowen@arcade.ch
i would be very thankful for some help.
<script>
var optionName = new Option('blam', 'blim', true, true);
var length = Bibliothek.document.form1.inputAuthor.length;
Bibliothek.document.form1.inputAuthor.options[length] = optionName;
</script>
<script>
var optionName = new Option('blam', 'blim', true, true);
var length = opener.document.form1.inputAuthor.length;
opener.document.form1.inputAuthor.options[length] = optionName;
</script>
andreas owen
aowen@arcade.ch