I know how,
BUT it does not work in NN6!!
here's what i use for MSIE and NN4.x
parent.frames.frameName.functionName();
what can i do for NN6
sebs!!
Printable View
I know how,
BUT it does not work in NN6!!
here's what i use for MSIE and NN4.x
parent.frames.frameName.functionName();
what can i do for NN6
sebs!!
Try using:
parent.frames["frameName"].functionName();
it gives me an error!!
tx a lot anyway!!
any more suggestion!!
Hmm.. what error did you get?
something like it needed a frames names!
i guess
parent.frames.frameName
this work, but not for calling a function !!
hummm!
Suggestion 1:
parent.otherFrameName.functionName();
Suggestions 2:
parent.frames[index].functionName()
make sure that index is the correct (0 if the function is in the first frame defined, 1 if it's the 2nd and so on).