/ Published in: HTML
Code to replace your opening tag with conditionally set IE classes, including IE10.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<!DOCTYPE html> <!--[if lt IE 7]> <html class="no-js lt-ie10 lt-ie9 lt-ie8 lt-ie7"> <![endif]--> <!--[if IE 7]> <html class="no-js lt-ie10 lt-ie9 lt-ie8 ie7"> <![endif]--> <!--[if IE 8]> <html class="no-js lt-ie10 lt-ie9 ie8"> <![endif]--> <!--[if IE 9]> <html class="no-js lt-ie10 ie9"> <![endif]--> <!--[if !IE]><!--> <script> if( Function('/*@cc_on return document.documentMode===10@*/')() ) { document.documentElement.className+=' ie10'; } </script> <!--<![endif]-->