Click to See Complete Forum and Search --> : Passing functions from frame B to frame A


togetslim
07-28-2003, 03:45 AM
New, please help

I am trying to run a function in frame A, but the funtion is being called for by hitting a button in frame B. So basically I'm asking how to pass a run function from frame A to frame B.

In Frame B...

<a href="#" onClick="changeMNU(3)">Menu 1</a>

"changeMNU(3)" is the function to be run in Frame A

hope this is enough info for someone to help me out.

Thanks, still trying to learn,
AM

Khalid Ali
07-28-2003, 07:46 AM
parent.frameName.functionName();

Will do.