I have a <script type="text/template> which inner HTML I use to create new elements.
How can I additionally add an ID to those created elements?
<script type="text/template" id="element-template">
<div class="element-container">
<p>Template</p>
</div>
</script>
Desired outcome:
<div id="my-element" class="element-container">
<p>Template</p>
</div>
Following code works, but I don't want to use find('.element-container') on the parent because the class could change in the future:
var template = $('#element-template').html();
$('#output').append(template).parent().find('.element-container').attr('id', 'my-element');
Use can find a JSFiddle here: http://jsfiddle.net/RZrkB/1/