Reputation: 2308
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?
Upvotes: 1
Views: 238
Reputation: 3440
Browser caching a scripts and styles. So scripts and styles will load from cache and working.
Try to clear cache in your borwser:
Upvotes: 1