jQuery has an .after() method, and also an .insertAfter() method.
What's the difference between them? I think I can use .after() to insert elements after a selected element (or elements). Is that right? What's .insertAfter() for?
|
jQuery has an What's the difference between them? I think I can use |
||||
|
|
|
They are mutual opposites. 'after' inserts the argument after the selector. 'insertAfter' inserts the selector after the argument. (I just confused myself). |
|||||
|
|
They are inverses of each other. As explained in the jQuery documentation: This:
Is the same as this:
And lastly, insertAfter returns all inserted elements, whereas .after() has no return. |
|||
|
|
|
All of the answers so far are clear as mud ;-) (So I'll take a stab at it too!) If you start off with this Html:
After inserts some new content after the matching tags:
The end result is:
On the other hand, InsertAfter moves one or more elements which already exist on the DOM after the selected elements (Really, this method could be called MoveAfter):
Resulting in:
|
||||
|
|
|
|
|||
|
|
|
after( content ) Returns: jQuery Insert content after each of the matched elements. insertAfter( selector ) Returns: jQuery Insert all of the matched elements after another, specified, set of elements. |
|||
|
|
|
It also seems that passing attributes of the inserted element doesn't work with ".insertAfter", but works with ".after" works:
doesn't work:
*edit: seems it doesn't work with ".after" neither, but only with ".appendTo" |
||||
|
|
|
Here you can find a very very good tutorial of how to add content to a page using the jQuery methods prepend(), prependTo(), append(), appendTo(), before(), insertBefore(), after(), insertAfter(), wrap(), wrapAll() and wrapInner() |
|||
|
|