Created
June 27, 2016 15:42
-
-
Save derHowie/df1d31d2aeab99a53e771e9007a5b70a to your computer and use it in GitHub Desktop.
html shell
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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