Dynamically append script tag inside dynamic div tag

142 Views Asked by At

How to dynamically append script tag to dynamically genarated div?

Eg:

<div class="test abc">

    abc

</div>

My code:

var count = 0;
$("div.test abc").append("<div id=" + "check" + count + ">"
                    +"<script type = 'text/javascript'>"
                    + "thirdpartyfunction(function(){});"
                    + "</script>"
                    + "</div>");

count++;

The above code just appends <div id="check0"> </div>

It does not append the script tag and anything thats inside it.

2

There are 2 best solutions below

2
On

You are missing a "

var count = 0;

$("div.test abc").append("<div id=" + "check" + count + ">"
                    +"<script type = 'text/javascript'>"
                    + "thirdpartyfunction(function(){});" ==> here                   + "</script>"
                    + "</div>");

count++;
}
4
On

You need to modify your class selector and escape your ending script tag:

$("div.test.abc")
<\/script>

fiddle