inspect :: Element

inspect(element) -> String

 

Returns the debug-oriented string representation of element.

 

For more information on inspect methods, see Object.inspect.

 

Example

 

<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>

 

$('golden-delicious').inspect();

// -> '<li id="golden-delicious">'

 

$('mutsu').inspect();

// -> '<li id="mutsu" class="yummy apple">'

 

$('mutsu').next().inspect();

// -> '<li>'

 


Prototype API 1.5.0 - prototypejs.org