Update D3.md

master
Matt Huntington 9 years ago committed by GitHub
parent d8e4fe8138
commit d247089e45

@ -37,6 +37,12 @@ d3.selectAll('div').classed('frog', false); //removes the class and returns the
d3.selectAll('div').append('span'); //append html to a selection and return appended element d3.selectAll('div').append('span'); //append html to a selection and return appended element
``` ```
### .remove()
```javascript
d3.selectAll('div').remove(); //remvoe selection
```
### .html() ### .html()
```javascript ```javascript

Loading…
Cancel
Save