Copy
From FirebugWiki
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.