Exchange content of two divs with a seem class name

Exchange content of two divs with a seem class name

Hi
Suppose i have two divs with the seem class name for example "column", how to toggle theirs content when user click and with a sliding animation if possible. For example :
  1. <div class="column">Content 1</div>
  2. ...
  3. <div class="column">Content 2</div>
  4. ...
  5. <span class="togglediv">Toggle</span>

When toggle span clicked, the result will be :
  1. <div class="column">Content 2</div>
  2. ...
  3. <div class="column">Content 1</div>
  4. ...
  5. <span class="togglediv">Toggle</span>

Thank you