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 have the following scenario: I want to append the input field to a different parent. The code looks like this

    <div id="id1">
        <div id="id2">
             <input type="radio">
       </div>
    </div>

I want to append the input field to "id1" and delete the "id2". The final result should look like this

    <div id="id1">
        <input type="radio">
    </div>
share|improve this question
1  
Have you tried anything? – Shadow Wizard Oct 16 '12 at 10:59
post js code please.. – bhb Oct 16 '12 at 10:59
yes, I did. what I am doing It's actually quite complicated. I am working on a HMTL5 page for mobile devices. I am using this script screwdefaultbuttons.com to add custom images to my page. However it is written I should use $(document).ready function but I actually have to replace it with $(document).bind('pageinit',function(){}); Now the problem is whenever a div with data-role=page is shown the script gets called again. The custom buttons are wrapped in a div that wraps the input field. each time I go to another page I get a deeper input field nested. I have to clean this somehow. – bboydflo Oct 16 '12 at 13:03
This is how it looks when I go to the next page. The input field gets nested two times. I want to place it just under the .ui-radio class. <div class="ui-radio"><div style="background-image: url(...);class="styledRadio"><div style="background-image: url(...); class="styledRadio"><input name="radiobuttons" data-role="none" type="radio" style="display: none; " onclick="..."></div></div><label for="..." type="radio">Bærbare computere</label></div> – bboydflo Oct 16 '12 at 13:08

8 Answers

up vote 3 down vote accepted
$('#id2 input').appendTo($('#id1'));
$('#id2').remove();
share|improve this answer
thanks. it looks like it works the way I want. But there is one little thing I have to figure out. I will come up with another question if I won't fixed it myself. Thank you – bboydflo Oct 16 '12 at 11:14
​$('#id2 input').​​​​appendTo($('#id1'))​​​​;
$('#id2').remove();

DEMO

share|improve this answer

In one line:

​$("#id2"​​).find("input").appendTo("#id1"​).end().end().remove();​​​​​

Another one line:

​$("#id2 input"​​).unwrap("#id2");​​​​​

DEMO: http://jsfiddle.net/CrmMG/

share|improve this answer
$('#id1').append($('#id2 input'))
$('#id2').remove();

Live Demo

share|improve this answer

take your input

 var input =  $("inputselector");

Put it in desired container

var parentRef =  $("inputselector").parent();
 $("inputselector").parent().parent().append( $("inputselector"));

Delete parent

 parentRef.remove();
share|improve this answer
$div = $('input:radio').clone();
$('#id2').remove();
$('#id1').append($div);

fiddle

share|improve this answer

Use jQuery unwrap(). It removes the parent of selector leaving the selected element in it's place

$('#id2 input').unwrap()

API Reference http://api.jquery.com/unwrap/

share|improve this answer

you can use either of them.

    $('#id2 input').​​​​appendTo($('#id1'))​​​​;
    $('#id2').remove();
    or
   $('#id2 input').unwrap();
share|improve this answer

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.