Skip to content

Instantly share code, notes, and snippets.

@whitglint
Created September 3, 2015 03:00
Show Gist options
  • Select an option

  • Save whitglint/9317a2f41a2dfcca8a08 to your computer and use it in GitHub Desktop.

Select an option

Save whitglint/9317a2f41a2dfcca8a08 to your computer and use it in GitHub Desktop.
凍結你的火狐
<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