Specifies the binding of 'meta' content to an HTTP response header : Meta Info : HTML : JavaScript DHTML examples (example source code) Organized by topic

JavaScript DHTML
C++
PHP
JavaScript DHTML Home »  HTML   » [  Meta Info  ]   
 



Specifies the binding of 'meta' content to an HTTP response header

Please note that some example is only working under IE or Firefox.

    
<html>
<meta id="myMeta">
<head>
<script language="JavaScript">
function function1() {
   document.all.myMeta.httpEquiv = "refresh";
   document.all.myMeta.content = 3

</script>
</head>
<body>
<input type="button" value="Refresh this page every 3 seconds." onClick="function1();">
</body>
</html>

    
      
      
Related examples in the same category
1.  'content' Example
2.  'scheme' Example
3.  'name' Example
























Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.