chrome frame meta tag


/ Published in: HTML
Save to your folder(s)

and check out http://code.google.com/chrome/chromeframe/developers_guide.html#Detecting_Google_Chrome_Frame


Copy this code and paste it in your HTML
  1. <meta http-equiv="X-UA-Compatible" content="chrome=1"> to detect
  2.  
  3. and to prompt install
  4. <script type="text/javascript"
  5. src="http://ajax.googleapis.com/ajax/libs/chrome-frame/1/CFInstall.min.js"> </script>
  6.  
  7. <div id="placeholder"></div>
  8.  
  9. CFInstall.check({
  10. node: "placeholder",
  11. destination: "http://www.waikiki.com"
  12. });
  13. </body>

URL: http://googlecode.blogspot.com/2009/09/introducing-google-chrome-frame.html

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.