Method: JQuery::Object#method_missing

Defined in:
lib/jquery.rb

#method_missing(method, *args) ⇒ Object



57
58
59
60
61
62
# File 'lib/jquery.rb', line 57

def method_missing(method, *args)
  next_obj    = self.class.new(method, *args)
  self.next   = next_obj
  next_obj.prev = self
  next_obj
end