class method Element.inspect
Element.inspect(element) → String
Returns the debug-oriented string representation of element
.
For more information on inspect
methods, see Object.inspect
.
<ul> <li id="golden-delicious">Golden Delicious</li> <li id="mutsu" class="yummy apple">Mutsu</li> <li id="mcintosh" class="yummy">McIntosh</li> <li></li> </ul>
And the associated JavaScript:
$('golden-delicious').inspect(); // -> '<li id="golden-delicious">' $('mutsu').inspect(); // -> '<li id="mutsu" class="yummy apple">' $('mutsu').next().inspect(); // -> '<li>'
This method can be called either as an instance method or as a generic method. If calling as a generic, pass the instance in as the first argument.