I use below to popup a page "popup" and then pass the value from popup
and back to my page. see below
However, how to return 2 values? I can return 1 value only.
thanks.
and back to my page. see below
However, how to return 2 values? I can return 1 value only.
Code:
function openModal() {
retVal=showModalDialog('popup.htm');
valReturned=retVal;
alert('The following text has been returned: "'+valReturned+'"');
}
Comment