Created
October 26, 2015 14:40
-
-
Save bekapod/71608cf2dbc8dfbe3f19 to your computer and use it in GitHub Desktop.
JQUERY: detach
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
/* Title: detach | |
* Description: take element off the DOM while manipulating them | |
*/ | |
var table = $('#some-table'); | |
var parent = table.parent(); | |
table.detach(); | |
table.addLotsAndLotsOfRows(); | |
parent.append(table); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment