I'm seriously an idiot today...
I'll rephrase... how do I edit the code below so that the value is coming from
a link (<a href="">My Value to Pass</a>) instead of a select box:
<HTML>
<HEAD>
<SCRIPT>
var dialogArguments;
function getValue (field) {
dialogArguments = field;
open ('aDialog.html', 'popup',
'width=250,height=100,scrollbars=1');
}
</SCRIPT>
</HEAD>
<BODY>
<FORM NAME="aForm">
<INPUT TYPE="text" NAME="aText">
<INPUT TYPE="button" VALUE="select text"
ONCLICK="getValue(this.form.aText)"
>
</FORM>
</BODY>
</HTML>
aDialog.html:
<HTML>
<HEAD>
</HEAD>
<BODY>
<TABLE WIDTH="100%" HEIGHT="100%">
<TR>
<TD ALIGN="center" VALIGN="middle">
<FORM NAME="aForm">
<SELECT NAME="gods"
ONCHANGE="window.opener.dialogArguments.value = this.options
[this.selectedIndex].value; window.close()">
<SCRIPT>
var html = '';
html += '<OPTION SELECTED>Please select text for field ' +
window.opener.dialogArguments.name;
document.write(html);
</SCRIPT>
<OPTION VALUE="Kibology">Kibology
<OPTION VALUE="Scriptology">Scriptology
</SELECT>
</FORM></TD>
</TR>
</TABLE>
</BODY>
</HTML>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:5:197982
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/5
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:5
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.5
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54