Created
July 30, 2015 22:02
-
-
Save brookr/8a570cbbfcbf54ef5839 to your computer and use it in GitHub Desktop.
MwzNRy
This file contains hidden or 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
<html> | |
<body> | |
<input type="number" /> | |
<ol> | |
<li></li> | |
<li></li> | |
<li></li> | |
<li></li> | |
<li></li> | |
<li></li> | |
<li></li> | |
<li></li> | |
<li></li> | |
<li></li> | |
<li></li> | |
<li></li> | |
<li></li> | |
<li></li> | |
<li></li> | |
</ol> | |
</body> | |
</html> |
This file contains hidden or 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
document.getElementByTagName('input').addEventListener("change", function() { | |
alert(this.value) | |
}, false) |
This file contains hidden or 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
ol { | |
list-style: decimal inside; | |
} | |
li:nth-child(3n) { | |
list-style-type: none; | |
} | |
li:nth-child(3n)::before { | |
content: "fizz" | |
} | |
li:nth-child(5n) { | |
list-style-type: none; | |
} | |
li:nth-child(5n)::after { | |
content: "buzz" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment