Very small IE detect
by kflorence
HTML
<!doctype html>
<html>
<head>
<script type="text/javascript">
(function(d) {
with(d.body)for(var ie=0;innerHTML="<!--[if gt IE "+ie+"]>1<![endif]-->",+innerHTML;ie++);
d.write("ie version = " + ie);
}(document));
</script>
</head>
<body>
<div>Body content still intact.</div>
</body>
</html>
CSS
body div {
font-weight: bold;
}