Chrome Framework - , , IE6, , - .
http://www.chromium.org/developers/how-tos/chrome-frame-getting-started
, :
<meta http-equiv="X-UA-Compatible" content="chrome=1">
</body> ( jQuery):
$(document).ready(function() {
CFInstall.check({
mode: "overlay",
destination: "http://{{ host }}"
});
});
If you are not using jQuery or another library, just include the call directly:
CFInstall.check({
mode: "overlay",
destination: "http://{{ host }}"
});
source
share