The following example in http://api.jquery.com/after/#disconnected-dom-nodes: ``` $( "" ) .after( "" ) .addClass( "foo" ) .filter( "p" ) .attr( "id", "bar" ) .html( "hello" ) .end() .appendTo( "body" ); ``` claims that the following should have been added to the body: ``` hello ``` using jQuery > 1.4. However, trying this example in jQuery 1.9.1 (on the jQuery documentation page itself), only the `` gets added to the body: ``` ``` Therefore, the example appears to be incorrect or there's a bug in the framework.