I have the following HTML
<div id="example">
...some text...
<script type="text/javascript">
... some javascript...
</script>
</div>
How to get content of #example but also with the JavaScript?
$("#example").html(),
$("#example").text(),
$("#example").val()
all don't work.
