Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to add this HTML also when a input field is added:

<div id="redDiv" style="width:30px;height:30px;margin-top:10px;display:block;background:red;"></div>
<div id="greenDiv" style="width:30px;height:30px;margin-top:10px;display:block;background:green;"></div>

My not edited Jquery http://jsfiddle.net/gDChA/23/:

function findLastInput ( element ) {
  return $( element ).parent().prev().find('input').last();
}
    $('button.add').click ( function(e) {
        $(this).parent().find('button.remove').show();
        $(this).hide();

        var element = findLastInput(this).clone();
        var name = element.prop('name');
        var pattern = new RegExp(/\[(.*?)\]/);
        var info = name.match(pattern)[1];
        element.prop({
          'value': '',
          'name' : name.replace(pattern, '[' + info + 'info' + ']'),
          'id'   : element.prop('id') + 'info',
          'type' : 'input',
          'class' : 'infoinput'
        });    
        $(this).parent().append(element);
    })
    $('button.remove').click ( function(e) {
        $(this).parent().find('button.add').show();
        $(this).hide();
        //findLastInput(this).remove('input');
        $(this).parent().find("input").remove();
    });

First I have tried to add the extra HTML without luck. I have edited this $(this).parent().append(element);

To this and it is not working:

$(this).parent().append(element + '<div id="redDiv" style="width:30px;height:30px;margin-top:10px;display:block;background:red;"></div>
    <div id="greenDiv" style="width:30px;height:30px;margin-top:10px;display:block;background:green;"></div>');

I want to add the HTML and removed it the same way as the input field works.

share|improve this question

1 Answer

up vote 0 down vote accepted

You proably need to add your extra html to element.html() instead of element (element is just an object returned from your function findLastInput), so it should be something like this:

$(this).parent().append(element.html() + '');

share|improve this answer
I have just tried it does not work: jsfiddle.net/gDChA/27 – Rails beginner Aug 15 '11 at 14:59
what is the code trying to do? what is this line "var element = findLastInput(this).clone();" trying to clone? – kabaros Aug 15 '11 at 15:44
It does clone the input field – Rails beginner Aug 15 '11 at 15:46
Problem where that there was 1 whitespace, now the HTML is added: jsfiddle.net/gDChA/44 – Rails beginner Aug 15 '11 at 16:13
Done jsfiddle.net/gDChA/46 – Rails beginner Aug 15 '11 at 16:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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