Search code examples
internet-explorerhttp-redirectconditional-comments

Is it possible to use IE conditional comments to redirect?


I've got a splash page which simply jams up in IE, and creating a workaround would require a tremendous amount of jQuery. Is there any way to use IE's conditional comments to skip the splash page, and redirect to the main page?


Solution

  • Put a meta refresh inside the conditional comment:

    <meta http-equiv="refresh" content="0;url=mainpage-url"/>