lonelynight
|
| Posted: 05/27/2005, 9:32 PM |
|
i'am trying to set with my popup windows with this code
function SetOpenerValue(Name)
{
window.opener.document.students.student_name .value = EmpName;
window.opener.focus();
window.close();
}
and in the event properties onclick = SetOpenerValue('{name}'); return false;
but when click nothing respond, suppost to be when click the popup windows will close and value displayed in text box of the master page.
please......
|
|
|
 |
Oper
Posts: 1195
|
| Posted: 05/28/2005, 12:46 AM |
|
function SetOpenerValue(EmpName)
{
window.opener.document.students.student_name .value = EmpName;
window.opener.focus();
window.close();
}
http://www.GlobalDevelop.com
_________________
____________________________
http://www.7bz.com (Free CMS,CRM Developed in CCS)
http://www.PremiumWebTemplate.com
Affiliation Web Site Templates
Please do backup first |
 |
 |
|