Launch the application and from your browser view the source of the application - is it jQuery version 1.9.0 or 1.8.3?
In Visual Studio, if you go to "Tools" β "Library Package Manager" β "Manage Nuget Packages for Solution" ... then left-click on updates and you will see jQuery in the list - click on "Update".
As far as I know, this will take care of everything. Check the source again.
One more thing you can do: go to Solution Explorer -> App_Start -> BundleConfig.cs - make sure the first call to bundles.Add looks like this:
bundles.Add(new ScriptBundle("~/bundles/jquery").Include( "~/Scripts/jquery-{version}.js", "~/Scripts/jquery-migrate-1.0.0.js"));
EDIT:
Read this.
Look at the new package code - itβs obvious that you downloaded the transfer file.
source share