jQuery has an .after() method, and also an .insertAfter() method.
.after()
.insertAfter()
What\'s the difference between them? I think I can use .after()
One important things apart some syntax is that memory leak and performance. insertafter is more efficient than insert when you have tons of dom elements. So prefer insertafter instead of after.