I'm destroying myself over this. Not the must experienced ind js. But this should be simple right?
I want to wrap each element in my 'arr'-array in and append it to the div#testBox. Im using jQuery.each to do so, but im getting nothing:
<script type='text/javascript'>
var arr = [ "one", "two", "three", "four", "five" ]
jQuery.each(arr, function() {
$(this).append("#testBox").wrap("<div class='mongol'></div>");
});
</script>
If i alert(this) in my jQuery.each-function then i alerts every element just fine. I don't get it.
What i am trying to achieve:
<div id="testBox>
<div class="mongol">one</div>
<div class="mongol">two</div>
<div class="mongol">three</div>
<div class="mongol">four</div>
<div class="mongol">five</div>
</div>
Thanks for helping Jonas