Basically, I have an iframe embedded in a page and the iframe has some JavaScript routines I need to invoke from the parent page.
iframe
Now the o
If you want to invoke the JavaScript function on the Parent from the iframe generated by another function ex shadowbox or lightbox.
You should try to make use of window object and invoke parent function:
window
window.parent.targetFunction();