Changeset 119

Show
Ignore:
Timestamp:
03/15/2007 06:20:34 (21 months ago)
Author:
why
Message:
  • lib/hpricot/elements.rb: starting work on attr method.
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/lib/hpricot/elements.rb

    r116 r119  
    170170        nest.children << x 
    171171      end 
     172    end 
     173 
     174    # Access a property on the first matched element. 
     175    def attr(k) 
     176      node = first 
     177      node.get_attribute(k) if node 
    172178    end 
    173179