hi, i have div:
<div id="example">
...some text...
<script type="text/javascript">
... some javascript...
</script>
</div>
how to get content of div "example" but also with that javascript ? $("#example").html(), $("#example").text(), $("#example").val() doesnt work.
so i want to get this:
...some text...
<script type="text/javascript">
... some javascript...
</script>
how to do that ? thanks