Spent 3 hours reading the link, but still no effect, so please here.
OS: Windows 7 (is this relevant?)
Browser: Opera 11.51
jQuery: 1.6.2
Two files on the local computer, main.html and menu.html in the same folder.
main.html:
<html> <head> <script type="text/javascript" src="js/jquery-1.6.2.min.js"></script> <script type="text/javascript"> $(document).ready(function(){ </script> </head> <body> <table> <tr> <td id="menu"></td> </tr> </table> </body> </html>
menu.html:
<html> <head></head> <body> menu tree </body> </html>
As I think, when I open main.html, there should be one table with one cell containing a menu tree line. And it works, for example, in IE. But Opera does not show any result.
I debugged the material with an additional callback for load (), it shows that the state of the result for load () is an βerrorβ.
What am I doing wrong?
source share