At ReWritables, you'll find hundreds of free resources including Java Scripts, HTML Tips and tricks and more. 
Our Free banner gallery has hundreds of free images.  Need custom animation, graphics design or web site 
graphics?  We'll be glad to help!

 

 

HTML Tip

Prevent Browser Cache

 

 

When visiting a web site, your browser will cache or make a copy of the web site for faster viewing your next visit. This will prevent visitors from seeing new content unless they manually reload their browser.

To prevent this problem, add the following code between your <HEAD> and </HEAD> tags.

<META http-equiv="Pragma" content="no-cache">

 

 

Back to HTML Tips