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

When i open my site in Firefox and click in a link, static things like the sidebar and the menu are always there, they don't blink or something. Only the rest of the content changes.

On the other hand, in Chrome, when i click in a link, the whole page goes white for some milliseconds and then, the whole page appears.

Is there any way(javascript, css, etc) of forcing chrome to do the same firefox does?

share|improve this question
1  
Without some code, how should we know why this happens and how to fix it? – Barmar Nov 15 '12 at 7:32
1  
atleast give your site link!! – Sibu Nov 15 '12 at 7:37

1 Answer

up vote 1 down vote accepted

For reference, this is called a page refresh. There are a few ways to prevent a page refresh, and the method you choose will depend on your scenario and size of your website.

One of the methods is using jQuery. You write your content in a different, hidden container (i.e. a <div style="display:none" /> in the same page and use jQuery to switch the contents.

Demo http://unwrongest.com/projects/tabify/

share|improve this answer
Yeah, that is the idea. Thanks – Daniel Pereira Silva Nov 15 '12 at 8:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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