Help, any javascript experts!
I need to return the entry no to another page, which has a list of records(upd_entry_no),the value is to return to one of the row only. eg. 5
if i do this, it will works:
opener.document.receipt.upd_entry_no(5).value =entry_no;
But if i do this, it can't recognise the record_no, which is the row id...
<script language="javascript">
function pickEntry(entry_no, record_no)
{
opener.document.receipt.upd_entry_no(record_no).va lue =entry_no;
close();
}
PLEASE HELP...
thanks...
regards, Angie
|