Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have checked the disable cache in chrome console, yet js and css files are not refreshed, I have tried clearing cache and history manually but still nothing, it is not server-side either because from another browser the files are the latest...

share|improve this question
5  
Cntrl f5 for a force refresh – Andy Dec 10 '12 at 17:33

closed as not a real question by Andrew Whitaker, Explosion Pills, DocMax, leepowers, valex Dec 11 '12 at 6:19

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

4 Answers

You can do it in two ways:

  1. Hard Refresh

    Press Ctrl + F5.

  2. Incognito Mode

    Press Ctrl + Shift + N to start a Private Browsing Session.

  3. Clear History

    Press Ctrl + Shift + Del to clear your history.

share|improve this answer

Hit Cntrl+F5 and hit Return...

share|improve this answer

Well, I know you said it isn't server side, but it really can be. Try to put version on your script/style as my example:

<link href="../Styles/style1.css?v=1.2.0" rel="stylesheet" type="text/css" />
<script src="../Scripts/jquery.min.js?v=1.2.0" type="text/javascript"></script>
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.