I want to clone and prepend a div, however I want to change the prepended div name from preConfi to preConfiXX (eg preConfiA1, preConfiB1) on each iteration. What syntax can I use for this?

/* on initial load,  move default template into each GroupX location */
var groups = ['A','B','C','D','E','F','G']
for (var groupLetter in groups){
    $('#template').clone().prependTo('#placeholder' + groups[groupLetter]);
}


        <!-- ************************** --> 
    <!-- *******  GROUPS   ******** --> 
    <!-- ************************** --> 
    <div id='groupA' class='preGroups'> 
    GroupA
    <div id="placeholderA"></div>
    </div>

    <div id='groupB' class='preGroups'> 
    GroupB
    <div id="placeholderB"></div>   
    </div>

         ....

    <div id='groupF' class='preGroups'> 
    <div id="placeholderF"></div>
    GroupF
    </div>


<div id='template'> 
<input type="radio" data-theme="a" name="preConfi" id="radio-choice-1" value="C" /> 
<input type="radio" data-theme="a" name="preConfi" id="radio-choice-2" value="T" /> 
<input type="radio" data-theme="a" name="preConfi" id="radio-choice-3" value="P" /> 
</div> 
link|improve this question
2  
Your question is not clear, can you give us a sample output you want to achieve? – valipour Jul 10 '11 at 20:34
sorry I don't understand what you're trying to do. change preConfi inside each cloned template? – kasdega Jul 10 '11 at 20:35
+1 Need just a little bit more. – Brogrammer Jul 10 '11 at 20:35
Sorry... I improved my explanation a bit. – bob Jul 10 '11 at 20:40
+1 Agreed. I think I may understand it but we need more info to be sure. – kasdega Jul 10 '11 at 20:41
show 6 more comments
feedback

1 Answer

up vote 0 down vote accepted

I'll take a shot at what I think you want:

$(document).ready(function() {
    var groups = ['A','B','C','D','E','F','G'];
    for (var groupLetter in groups){
        var myClone = $('#template').clone();
        myClone.attr("id", "template-"+groups[groupLetter]);

        var index = 1;
        myClone.find("input[type^=radio]").each(function() {
            var myName = $(this).attr("name");
            $(this).attr("name", myName+groups[groupLetter]+index++);
        });

        myClone.prependTo('#placeholder' + groups[groupLetter]);
    }
});

http://jsfiddle.net/a5HB7/3/

link|improve this answer
Cleaned up a missing end paren. – kasdega Jul 10 '11 at 20:58
had an extra () where it shouldn't be. – kasdega Jul 10 '11 at 21:04
Don't forget that there should be only one element on a page with any given ID. So you want to change the clone's ID. – kasdega Jul 10 '11 at 21:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.