1

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?

2
  • Have you tried clearing the browser cache? The easiest way to check if it is a cache issue is to do Ctrl+F5 in the browser. Commented Jan 10, 2013 at 11:42
  • 1
    Are you running from within IIS or on the VS development server? In any case, try recycling the application pool in IIS or restarting the VS development server. Also check whether the <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. Commented Jan 10, 2013 at 13:58

1 Answer 1

1

Browser caching a scripts and styles. So scripts and styles will load from cache and working.

Try to clear cache in your borwser:

Clear cache in browser

Sign up to request clarification or add additional context in comments.

1 Comment

This is not a cache problem. Other browser has the same behavior

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.