How do I make an inherit its parent\'s styles and javascript.
I have tried
var parentHead = $(\"head\", parent.document)
You can "inherit" the CSS of the parent by having such code in the iframe:
Worked fine for me in IE, Chrome and Firefox.
Regarding JavaScript,
I couldn't find a way to add the parent JavaScript into the iframe directly, however you can add parent.
anywhere to use the JS from within the parent, for example:
This will invoke function called MyFunc
defined in the parent page when the button is clicked.