You can create a hidden download link and an alternative stylesheet for your site and switch between them using conditional comments:
And in this stylesheet, regular browsers see this:
#download
{
display: none;
}
ie.css
:
#download
{
display: block !important;
}
JavaScript, :
if (navigator.appVersion.indexOf('Win') != -1 && /MSIE (\d+\.\d+);/.test(navigator.userAgent))
{
var version = new Number(RegExp.$1);
if (version > 7)
{
alert('You are using a compatible browser.');
}
}
Chrome Linux, ( , ).