Copy
From FirebugWiki
(Difference between revisions)
Sebastianz (Talk | contribs) (Separate Command Line API page for copy()) |
Sebastianz (Talk | contribs) m (Add link to the $ command) |
||
| (2 intermediate revisions not shown) | |||
| Line 1: | Line 1: | ||
| - | Copies the given | + | Copies the given object to the clipboard. This can be a return value of a function or a DOM property. |
| + | |||
| + | == Syntax == | ||
| + | <source lang="javascript"> | ||
| + | copy(object) | ||
| + | </source> | ||
| + | |||
| + | == Parameters == | ||
| + | === object === | ||
| + | Object to copy to the clipboard. '''(required)''' | ||
| + | |||
| + | == Examples == | ||
| + | <source lang="javascript"> | ||
| + | copy(obj.name) | ||
| + | </source> | ||
| + | |||
| + | This copies the value of the <code>obj.name</code> property to the clipboard. | ||
| + | |||
| + | <source lang="javascript"> | ||
| + | copy($("element").outerHTML) | ||
| + | </source> | ||
| + | |||
| + | This copies the HTML tree of the element with id <code>element</code> including the element tag itself to the clipboard using the [[$|$ command]]. | ||
| + | |||
| + | == See also == | ||
| + | * [[Command Line API]] | ||
Latest revision as of 11:34, 13 July 2012
Copies the given object to the clipboard. This can be a return value of a function or a DOM property.
Contents |
[edit] Syntax
copy(object)
[edit] Parameters
[edit] object
Object to copy to the clipboard. (required)
[edit] Examples
copy(obj.name)
This copies the value of the obj.name property to the clipboard.
copy($("element").outerHTML)
This copies the HTML tree of the element with id element including the element tag itself to the clipboard using the $ command.