Add to the end of the contents inside each element in this list. Pass in an HTML str, which is turned into Hpricot elements.
Source Code
# File hpricot/elements.rb, line 132 def append(str = nil, &blk) each { |x| x.html(x.children + Hpricot.make(str, &blk)) } end
<code/>and<pre/>for code samples.