Given the following snippet:
<div id="myDiv">
This is my text <span>with a span</span>
</div>
JQuery can get the interior string with:
$('#myDiv').text();
Is there a more intuitive way in Prototype than:
$('myDiv').pluck('innerHTML').first().stripTags();