I have a legacy application that uses iframes. It has an iframe in the parent page, that is dynamically replaced with other pages.
JQuery is loaded in the parent. Is there some type of plugin that will allow me to access the jquery core that is loaded in the parent from the iframe pages without including jquery (language="JavaScript" src="../javascript/jquery.js") in the multiple child (iframe) pages?
For example, the iframe is static
<iframe name="mainWindow" src="includes/View.asp frameborder="0" />
I know there are better ways to do this, but I am stuck with this architecture at the moment. Any suggestions?