I have a problem with a webpage, at this moment I'm validating the browser version with something like this:
<!--[if lte IE 9]>
<div id="ie-compatibility">
<h1>Your browser is out of date</h1>
</div>
<![endif]-->
That works but however the entire page is loaded (js libs, stylesheets, other divs, etc...), There is a way to don't load entire page when the condition exists? I just want to show a message and some images and nothing more on my ie-compatibility(as additional data I'm using AngularJS on my project).
Thanks for advance.