Hi I've identified the HTML5/CSS3 elements that cause older browsers to struggle with my site. I'm aware of the opposition to using this method to redirect but I think it'll work for me fine. Tried this and a few others from forums and I'm testing using IE8.0.6001.18702 and it's not redirecting
<script type="text/javascript">
<!--
browser = navigator.appName
ver = navigator.appVersion
version = ver.substring(0,1)
if (browser=="Internet Explorer") {
if (version<="8.1")
document.location.href="lores.htm"
}
if (browser=="Safari") {
if (version<="6.0")
document.location.href="lores.htm"
}
if (browser=="Firefox") {
if (version<="5.0")
document.location.href="lores.htm"
}
if (browser=="Chrome") {
if (version<="15.0")
document.location.href="lores.htm"
}
if (browser=="Opera") {
if (version<="11.10")
document.location.href="lores.htm"
}
//-->
</script>
So the thing is nothing seems to work so I could really do with some advice. I've included this example to show the versions I want to redirect to 'lores.htm' for the basic website.
Any chance of a hand?