Hi: I have a page which use the iframe tag:
Default.aspx:
xxxx
<iframe src="sub.aspx" xxx />
And in the sub.aspx I load some js:
<script xxx>menu.js</script>
<script xxx>search.js</script>
<script xxx>funct.js</script>
And in the body of the sub.aspx,I use:
<body onload="init()"xxxx >
The init function is defined inside the funct.js, and within the method of the init I create a new object using:
var search=new SearchEngine();
Now everything works well in IE6, but when I use Firefox, it show me that "the SearchEngine" is not defined".
I wonder why? Using the Firebug's network panel, I did see the search.js being loaded. What is the problem? Where the SearchEngine is defined in the search.js.