![]() |
Admin 4/20/2012 |
Not quite a PHPRunner question really but here is article for inspiration: |
W
|
wildwally author 4/20/2012 |
Not quite a PHPRunner question really but here is article for inspiration: http://stackoverflow...dow-with-jquery In short - popup can use window.opener to access the calling page. Just make sure you open new page in popup via window.open() function.
|
![]() |
Admin 4/20/2012 |
See approved answer on stackoverflow. There is no need to use or know form name. There is no need to use Javascript API either. Simply access any field or object using jQuery. |
W
|
wildwally author 4/20/2012 |
See approved answer on stackoverflow. There is no need to use or know form name. There is no need to use Javascript API either. Simply access any field or object using jQuery.
|
![]() |
Admin 4/20/2012 |
It's just one line of code in fact: window.opener.$("#" + id).val(newvalue);
|
W
|
wildwally author 4/20/2012 |
It's just one line of code in fact: window.opener.$("#" + id).val(newvalue);
|