#jquery #after() .after() .after() can add new elements after the selected element, or move elements elsewhere. grammar .after( content [, content ] ) for example $( 'h1' ).after( 'Hello' ); will add a p element with Hello as content after the h1 element. $( 'h1.a' ).after( $( 'p.b' ) ); will move p elements with b as class value after h1 elements with a as class value. example1 After the h1 ele..