Hi,
I've created an ajax website using a masterpage.
In the masterpage I've placed the scriptmanager on top of the page (just below the form-tag) like this:
<asp:ScriptManager runat="server" ID="scriptmng" LoadScriptsBeforeUI="true">
<Scripts>
<asp:ScriptReference Path="~/utilities/scripts/webkit.js" />
<asp:ScriptReference Path="~/utilities/scripts/c_config.js" />
<asp:ScriptReference Path="~/utilities/scripts/c_smartmenus.js" />
</Scripts>
</asp:ScriptManager>
Everything is working great, exept for one thing. One of my users who's using the latest beta version of Chrome has an issue in using my menu. It's a javascript menu (files c_config.js and c_smartmenus.js). The submenu's aren't showing up. I've installed the latest beta version of Chrome on my computer, but I'm not able to reproduce this problem on my machine. In all browsers everthing is working fine, except for this one user.
When I delete the scripts from the scriptmanager and put them in the head-section like this:
<script type="text/javascript" language="javascript" src="http;//mydomain/utilities/scripts/c_config.js"></script>
the user no longer has this problem.
Any ideas????