# File lib/facepricot.rb, line 85
    def method_missing(methodSymbol, *params)
      begin
        @doc.method(methodSymbol).call(*params) # pose as Hpricot document
      rescue
        return make_facepricot_chain(methodSymbol.to_s, @doc.containers[0])
      end
    end