Public · Protected · Private
Microsoft JScript runtime error: 'rootjQuery' is undefined
Type: Public  |  Created: 2012-08-09  |  Frozen: Yes
« Previous Public Blog Next Public Blog »
Comments
  •   <script src="Scripts/jquery-1.7.js" type="text/javascript"></script>
       
    <script src="Scripts/jquery-1.7-vsdoc.js" type="text/javascript"></script>
        <script language="jscript" type="text/javascript" >
            $(document).ready(function () {
                alert(1);
            });
         </script>
    swap the hilighted two lines to Fix this error
     
    <script src="Scripts/jquery-1.7-vsdoc.js" type="text/javascript"></script>
    <script src="Scripts/jquery-1.7.js" type="text/javascript"></script>
     
    <script language="jscript" type="text/javascript" >
            $(document).ready(function () {
                alert(1);
            }); 
        

    2012-08-09 23:08
This blog is frozen. No new comments or edits allowed.