I am replacing the content of my HTML DOM with jQuery like:
$('#identifier').html('<html-content>');
The <html-content>
is loaded by an ajax request and included in the HTTP response. I do need to execute any <script>
which is encluded in this HTML. How can I achieve this?