Can anyone help me out with the following, please?
The javascript for what I am wanting to do is as follows:
HTML Code:
function alert( header, message ) {
parent.applet.document.ChatClient.alert( header, message );
}
As far as I can tell, this works fine. The problem I am having is with the following code:
HTML Code:
<td>
<form name=Warn>
<B>Warn:</B> <select onchange="javascript:alert(this.options[selectedIndex].value);">
<option value="">--------</option>
<option value="Hi _USER_!";"Is everything ok?">Hi there!</option>
</select>
</form>
</td>
How do I make an options that contains both the header AND the message in the drop down here? I know what I have for the option isn't right.
Thank you in advance.