Trying to install Chrome Frame on WindowsXP SP3, IE8, using the following:
<script src="http://ajax.googleapis.com/ajax/libs/chrome-frame/1/CFInstall.min.js"></script>
$('#chrome1').on('click',function(e) {
e.preventDefault();
CFInstall.check({
mode: "overlay",
url: "http://www.google.com/chromeframe/eula.html?user=true",
destination: "www.mysite.com"
});
});
Mid way through the install I get "This content cannot be displayed in a frame". Since this Google's recommended install approach (http://www.chromium.org/developers/how-tos/chrome-frame-getting-started), I'm wondering why I get this?