Skip to content

Instantly share code, notes, and snippets.

@derHowie
Created June 27, 2016 15:42
Show Gist options
  • Save derHowie/df1d31d2aeab99a53e771e9007a5b70a to your computer and use it in GitHub Desktop.
Save derHowie/df1d31d2aeab99a53e771e9007a5b70a to your computer and use it in GitHub Desktop.
html shell
<!DOCTYPE html>
<!--[if lte IE 6]><html class="preIE7 preIE8 preIE9"><![endif]-->
<!--[if IE 7]><html class="preIE8 preIE9"><![endif]-->
<!--[if IE 8]><html class="preIE9"><![endif]-->
<!--[if gte IE 9]><!--><html><!--<![endif]-->
<head>
<meta charset="UTF-8">
<title>title</title>
</head>
<body>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
function autorun()
{
}
if (window.addEventListener) window.addEventListener("load", autorun, false);
else if (window.attachEvent) window.attachEvent("onload", autorun);
else window.onload = autorun;
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment