Created
September 3, 2015 03:00
-
-
Save whitglint/9317a2f41a2dfcca8a08 to your computer and use it in GitHub Desktop.
凍結你的火狐
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> | |
| <table id="foo"> | |
| <tbody> | |
| </tbody> | |
| </table> | |
| <script> | |
| var foo = document.getElementById('foo'); | |
| while (foo.firstChild) { | |
| foo.remove(foo.firstChild); | |
| } | |
| </script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment