Search code examples
jqueryswapjavascript

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.


Solution

  • Here's an interesting way to solve this using only jQuery (if the 2 elements are next to each other):

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

    or

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