We need to re-direct a site for ie10 only - temporarilly whilst trying to fix a bizzare ajax bug that seems to happen in ie10 and below only.
Conditional statements would be ideal - ie -
<!--[if lt IE 9]>
<script type="text/javascript">
window.location = "/home/unsupported";
</script>
<![endif]-->
but i understand support for conditional was removed from ie10 - is there a way we can redirect ie10 only?
Cheers