In VS2013 preview MVC5 template, we included Bootstrap and jQuery UI together in the same project. However, some themes of jQuery UI (1.8.24 in the project template) is conflicting with Bootstrap (version 2.3.1 in the project template), especially for button. We have seen at least one such question in our forum. Let’s create a test project first to see the effect. 1. File->New Project, choose Templates->Web->ASP.NET Web Application, select MVC, click Create Project 2. Right click project and choose “Manage NuGet Packages”, go to “Updates” tab, and update “jQuery UI (Combined Library)” to the latest version (1.10.3 at the time of writing) 3. Change App_Start/BundleConig.cs file to include jQuery UI js file. Code Snippet bundles.Add(...(read more) ...
Go to the complete details ...