I am having a terrible nightmare.. In my Asp Net MVC 4 application I am calling the javascripts and css scripts using Bundles.
I did not have success trying to remove a tab border so I decided to remove all jquery ui files from my project and guess what... Jquery UI still works.
The only thing that makes jquery ui stop working is to remove the following from my BundleConfig:
bundles.Add(new StyleBundle("~/Style/css").Include("~/Style/redmond/*.css"));
So I presume it is loading the css´s from another files but I don´t know where they are.
My last attempt was to remove reference for Jquery and Jquery UI packages from my project and still I get the same behavior
Does anybody ever had the same happening to you? I you do, how can I solve that?
<script ...>tags are still present in the generated HTML - so that you can see where it is loading them from. Furthermore, you can open the Network tab in e.g. Firebug and see what is actually loaded (which css and js files) and where from.