Is there a native jQuery function to switch elements?
Can I easily swap two elements with jQuery? I'm looking to do this 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. I've found an interesting way to solve this using only jQuery: $("#element1").before($("#element2")); or $("#element1").after($("#element2")); :) bobince 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