Mary Mascari

Greenhorn
+ Follow
since Jun 26, 2002
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Mary Mascari

Tried it - no good.
Any other suggestions?
I know that you get a permission denied error when you try to modify a window from a different domain.
I'm getting the problem in my application, but the domains are the same. It happens intermittently, which is the most frustrating part.
Here's what's happening. I've got a form with some fields in it, and a link to launch a popup to allow the user to search for values to put into the form. They click on the value and poof! the form field is populated with that value.
Parent:
productSearch = window.open(searchUrl,'productsearch');
productSearch.opener = self;
Child:
opener.document.forms[0].month.value=month;
Any thoughts?
Thanks.