I dont want my HTML5 pages to be cached , so i am using these tags under my HTML file
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta http-equiv="cache-control" content="max-age=0" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="expires" content="0" />
<meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" />
<meta http-equiv="pragma" content="no-cache" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<script src="js/jquery-1.10.2.min.js"></script>
</head>
When i validated these with http://validator.w3.org/check ,
its saying as
Bad value cache-control for attribute http-equiv on element meta.
<meta http-equiv="cache-control" content="max-age=0" />
Bad value cache-control for attribute http-equiv on element meta.
<meta http-equiv="cache-control" content="no-cache" />
Bad value expires for attribute http-equiv on element meta.
<meta http-equiv="expires" content="0" />
Bad value expires for attribute http-equiv on element meta.
<meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" />
Bad value pragma for attribute http-equiv on element meta.
<meta http-equiv="pragma" content="no-cache" />
Could you please let me know how to resolve this ??