a(href = "")
Instance Public methods
Generate an Anchor element as a string.
href
can either be a string, giving the URL for the HREF
attribute, or it can be a hash of the element's attributes.
The body of the element is the string returned by the no-argument block passed in.
1 2 3 4 5 | # => "<A HREF=\"http://www.example.com\">Example</A>" # => "<A HREF=\"http://www.example.com\" TARGET=\"_top\">Example</A>" |
Please login to continue.