AppendSelection appends the elements in the selection to the end of each element in the set of matched elements. This follows the same rules as Selection.Append.
(sel *Selection)
| 88 | // |
| 89 | // This follows the same rules as Selection.Append. |
| 90 | func (s *Selection) AppendSelection(sel *Selection) *Selection { |
| 91 | return s.AppendNodes(sel.Nodes...) |
| 92 | } |
| 93 | |
| 94 | // AppendHtml parses the html and appends it to the set of matched elements. |
| 95 | func (s *Selection) AppendHtml(htmlStr string) *Selection { |