Can I easily swap two elements with jQuery?

I'm looking to do it with one line if possible

I have a select element and I have two buttons to move up or down the options, and I already have the selected and the destination selectors in place, I do it with an if, but I was wondering if there is an easier way

link|improve this question

Can you post you markup and code sample? – Tarkus Mar 30 '09 at 17:59
It's not a matter of jQuery but JavaScript: you cannot swap DOM elements in a single instruction. However, [Paolo's answer](#698386) is a great plugin ;) – Seb Mar 30 '09 at 18:16
For people coming here from google: check out lotif's answer, very simple and worked perfectly for me. – Maurice Feb 1 at 13:44
1  
@Maurice, I changed the accepted answer – Juan Manuel Feb 1 at 13:57
feedback

9 Answers

up vote 14 down vote accepted

I've found an interesting way to solve this using only jQuery:

jQuery("#element1").before(jQuery("#element2"));

or

jQuery("#element1").after(jQuery("#element2"));

:)

link|improve this answer
Yeah, this should work: The documentation says: "If an element selected this way is inserted elsewhere, it will be moved before the target (not cloned)". – Ridcully Jan 11 at 15:55
I like this option the best! Simple and nicely compatible. Allthough i like to use el1.insertBefore(el2) and el1.insertAfter(el2) for readability. – Maurice Feb 1 at 13:43
One sidenote though.. (which I guess applies to all solutions on this page) since we're manipulating the DOM here. Removing and adding does not work well when there is an iframe present within the element you are moving. The iframe will reload. Also it will reload to it's original url instead of the current one. Very annoying but security-related. I have not found a solution for this – Maurice Feb 1 at 15:54
feedback

Paulo's right, but I'm not sure why he's cloning the elements concerned. This isn't really necessary and will lose any references or event listeners associated with the elements and their descendants.

Here's a non-cloning version using plain DOM methods (since jQuery doesn't really have any special functions to make this particular operation easier):

function swapNodes(a, b) {
    var aparent= a.parentNode;
    var asibling= a.nextSibling===b? a : a.nextSibling;
    b.parentNode.insertBefore(a, b);
    aparent.insertBefore(b, asibling);
}
link|improve this answer
1  
docs.jquery.com/Clone - passing it "true" clones the events too. I tried without cloning it first but it was doing what yours currently is: it's swapping the first one with the 2nd one and leaving the first one as is. – Paolo Bergantino Mar 30 '09 at 18:35
What do you mean by "as is"? – Juan Manuel Mar 30 '09 at 18:36
if i have <div id="div1">1</div><div id="div2">2</div> and call swapNodes(document.getElementById('div1'), document.getElementById('div2')); i get <div id="div1">1</div><div id="div2">1</div> – Paolo Bergantino Mar 30 '09 at 18:44
3  
Ah, there's a corner case where a's next sibling is b itself. Fixed in the above snippet. jQuery was doing the exact same thing. – bobince Mar 30 '09 at 18:54
I have a very order-sensitive list that needs to retain events and IDs and this works like a charm! Thanks! – Helgi Hrafn Gunnarsson May 27 '11 at 14:46
feedback

No, there isn't, but you could whip one up:

jQuery.fn.swapWith = function(to) {
    return this.each(function() {
        var copy_to = $(to).clone(true);
        var copy_from = $(this).clone(true);
        $(to).replaceWith(copy_from);
        $(this).replaceWith(copy_to);
    });
};

Usage:

$(selector1).swapWith(selector2);

Note this only works if the selectors only match 1 element each, otherwise it could give weird results.

link|improve this answer
is it necessary to clone them? – Juan Manuel Mar 30 '09 at 18:19
Pretty sure, but I'd be interested if anyone can achieve the same effect without cloning them. – Paolo Bergantino Mar 30 '09 at 18:20
Perhaps you could write them directly using html() ? – Ed Woodcock Feb 4 '10 at 16:47
@Ed Woodcock If you do, you will lose bound events on those elements I'm pretty sure. – alex Sep 12 '10 at 9:11
feedback

You shouldn't need two clones, one will do. Taking Paolo Bergantino answer we have:

jQuery.fn.swapWith = function(to) {
    return this.each(function() {
        var copy_to = $(to).clone(true);
        $(to).replaceWith(this);
        $(this).replaceWith(copy_to);
    });
};

Should be quicker. Passing in the smaller of the two elements should also speed things up.

link|improve this answer
3  
The problem with this, and Paolo's, is that they cannot swap elements with an ID as IDs must be unique so cloning does not work. Bobince's solution does work in this case. – Ruud v A Aug 4 '10 at 15:58
Another problem is that this will remove the events from copy_to. – Jan Willem B Apr 13 '11 at 5:52
feedback

The best option is to clone them with clone() method.

link|improve this answer
feedback

I've made a function which allows you to move multiple selected options up or down

$('#your_select_box').move_selected_options('down');
$('#your_select_boxt').move_selected_options('up');

Dependencies:

$.fn.reverse = [].reverse;
function swapWith() (Paolo Bergantino)

First it checks whether the first/last selected option is able to move up/down. Then it loops through all the elements and calls

swapWith(element.next() or element.prev())

jQuery.fn.move_selected_options = function(up_or_down) {
  if(up_or_down == 'up'){
      var first_can_move_up = $("#" + this.attr('id') + ' option:selected:first').prev().size();
      if(first_can_move_up){
          $.each($("#" + this.attr('id') + ' option:selected'), function(index, option){
              $(option).swapWith($(option).prev());
          });
      }
  } else {
      var last_can_move_down = $("#" + this.attr('id') + ' option:selected:last').next().size();
      if(last_can_move_down){
        $.each($("#" + this.attr('id') + ' option:selected').reverse(), function(index, option){
            $(option).swapWith($(option).next());
        });
      }
  }
  return $(this);
}
link|improve this answer
This is inefficient, both in the way the code is written and how it will perform. – Blaise Jun 25 '11 at 11:53
It wasn't a major feature of our app and I just use it with small amounts of options. I just wanted something quick & easy... I would love it if you could improve this! That would be great! – Tom Maeckelberghe Jul 18 '11 at 9:52
feedback

take a look at jQuery plugin "Swapable"

http://plugins.jquery.com/project/Swapable

it's built on "Sortable" and looks like sortable (drag-n-drop, placeholder, etc.) but only swap two elements: dragged and dropped. All other elements are not affected and stay on their current position.

link|improve this answer
feedback

If you're wanting to swap two items selected in the jQuery object, you can use this method

http://www.vertstudios.com/blog/swap-jquery-plugin/

link|improve this answer
feedback

I used a technique like this before. I use it for the connector list on http://mybackupbox.com

// clone element1 and put the clone before element2
$('element1').clone().before('element2').end();

// replace the original element1 with element2
// leaving the element1 clone in it's place
$('element1').replaceWith('element2');
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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