Error with jquery references and getting two versions of jquery at once-Collection of common programming errors
For some reason I am getting version 1.8.2 of jQuery added to my solution even though there is no reference to it anywhere. Only 1.9.1 in the scripts. The code to add it is:
bundles.Add(new ScriptBundle("~/bundles/jquery").Include("~/Scripts/jquery-{version}.js"));
Things seem to work fine. I also have these errors in the console. Any ideas?
Exception was thrown at line 5288, column 6 in http://xxx:7000/Scripts/jquery-1.8.2.js
0x800a139e - JavaScript runtime error: SyntaxError
Exception was thrown at line 4224, column 4 in http://xxx:7000/Scripts/jquery-1.9.1.js
0x800a139e - JavaScript runtime error: SyntaxError
Exception was thrown at line 4242, column 4 in http://xxx:7000/Scripts/jquery-1.9.1.js
0x800a139e - JavaScript runtime error: SyntaxError
Exception was thrown at line 5288, column 6 in http://xxx:7000/Scripts/jquery-1.8.2.js
0x800a139e - JavaScript runtime error: SyntaxError
Exception was thrown at line 4224, column 4 in http://xxx:7000/Scripts/jquery-1.9.1.js
0x800a139e - JavaScript runtime error: SyntaxError
Exception was thrown at line 4242, column 4 in http://xxx:7000/Scripts/jquery-1.9.1.js
0x800a139e - JavaScript runtime error: SyntaxError
-
dear friend take a look to the following code in the code bellow
bundles.Add(new ScriptBundle("~/bundles/jquery").Include( "~/Scripts/jquery-{version}.js"));
take all of the versions of the jquery in you folder and put it in the page or view where you call it e.g in Layout page so you have to delete one of the jquery file , e.g jquery-1.8.2.js or jquery-1.9.1.js from the scripts folder of your project it think it should work for you
-
Make sure that when you publish, you change your settings to remove all files at destination…