Let's say I have three <div> elements on a page. How can I swap positions of the first and third <div>? jQuery is fine.
|
|
|
|||
|
|
|
|
Trivial with jQuery
If you want to do it repeatedly, you'll need to use different selectors since the divs will retain their ids as they are moved around.
|
||||||||||
|
|
|
This function may seem strange, but it heavily relies on standards in order to function properly. In fact, it may seem to function better than the jQuery version that tvanfosson posted which seems to do the swap only twice. What standards peculiarities does it rely on?
|
|||
|
|
|
|
Jquery approach mentioned on the top will work. You can also use JQuery and CSS .Say for e.g on Div one you have applied class1 and div2 you have applied class class2 (say for e.g each class of css provides specific position on the browser), now you can interchange the classes use jquery or javascript (that will change the position) |
||
|
|
|
|
There's no need to use a library for such a trivial task:
This takes account of the fact that You could also use:
and there are various other possible permutations, if you feel like experimenting:
for example :-) |
||||||||||||||||
|
|
|
and use it like this:
if you don't want to use jQuery you could easily adapt the function. |
||
|
|
|
|
If you have jQuery on the page, this post should answer your question. |
||
