목차1 개요2 문법3 예제 14 예제 25 참고 개요 .insertAfter()는 특정 요소 뒤에 요소를 추가하거나 이동시킵니다. 문법 .insertAfter( target ) 예제 1 h1 요소 뒤에 <p>World</p>를 추가합니다. <!doctype html> <html lang="ko"> <head> <meta charset="utf-8"> <title>jQuery</title> <style> body { font-family: Consolas, monospace; font-size: 16px; } </style> <script src="//code.jquery.com/jquery-3.7.1.js"></script> <script> $( document […]